/* Main Section Styles */
main {
    padding: 40px 20px;
    margin-top: 100px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* First Section - Hero Section */
  #brake-service-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px;
    margin-bottom: 60px;
  }
  
  .text-container {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
  }
  
  .text-container h3 {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .text-container h1 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .text-container p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  
  .text-container ul {
    margin-bottom: 30px;
    padding-left: 20px;
  }
  
  .text-container ul li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.5;
  }
  
  .button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  .button {
    text-decoration: none;
    font-size: 1.1rem;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
  }
  
  .button.book-now {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
  }
  
  .button.book-now:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
  }
  
  .button.call-now {
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
  }
  
  .button.call-now:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
  }
  
  .image-container {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .image-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Content Sections */
  .additional-content, 
  .acura-info-section,
  .faq-section {
    padding: 60px 40px;
    margin: 40px 0;
    background-color: #f9f9f9;
    border-radius: 12px;
  }
  
  .additional-content h2,
  .acura-info-section h2,
  .faq-section h2 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 25px;
    text-align: center;
  }
  
  .additional-content p,
  .acura-info-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .additional-content ul,
  .acura-info-section ul {
    max-width: 800px;
    margin: 30px auto;
    padding-left: 20px;
  }
  
  .additional-content ul li,
  .acura-info-section ul li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
  }
  
  .additional-content ul li:before,
  .acura-info-section ul li:before {
    content: "•";
    color: #000;
    font-weight: bold;
    position: absolute;
    left: 0;
  }
  
  /* Topics Grid Section */
  .topics-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    margin: 60px 0;
  }
  
  .topic {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .topic:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .topic-image {
    margin-bottom: 20px;
  }
  
  .topic-image img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
  }
  
  .topic h3 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 15px;
  }
  
  .topic p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }
  
  /* Article Section */
  .article-section {
    padding: 60px 40px;
    background-color: #fff;
    border-radius: 12px;
    margin: 60px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
  
  .article-header h2 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .article-content {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .article-content h3 {
    font-size: 1.6rem;
    color: #222;
    margin: 35px 0 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .article-content h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #000;
  }
  
  .article-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
  }
  
  .article-content ul {
    margin: 25px 0;
    padding-left: 0;
  }
  
  .article-content ul li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
    padding-left: 30px;
    position: relative;
  }
  
  .article-content ul li:before {
    content: "✓";
    color: #000;
    font-weight: bold;
    position: absolute;
    left: 0;
  }
  
  /* FAQ Section */
  .faq-section ul {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 0;
    list-style-type: none;
  }
  
  .faq-section li {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
  }
  
  .faq-section li:last-child {
    border-bottom: none;
  }
  
  .faq-section strong {
    font-size: 1.2rem;
    color: #222;
    display: block;
    margin-bottom: 10px;
  }
  
  .faq-section li p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
  }
  /* Google Reviews Section - Improved Styling */
.google-reviews {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 60px auto;
    padding: 50px 40px;
    text-align: center;
  }
  
  .google-reviews h3 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
  }
  
  .google-reviews h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #000;
  }
  
  /* Remove link styling while keeping it clickable */
  .google-reviews a {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  
  .review-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  
  .review {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    text-align: left;
    border: 1px solid #eee;
  }
  
  .review:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #ddd;
  }
  
  .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .rating {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .google-logo {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    filter: grayscale(100%) contrast(60%);
    opacity: 0.8;
  }
  
  .star {
    color: #f4b400;
    font-size: 1.2rem;
  }
  
  .reviewer-info {
    text-align: right;
  }
  
  .reviewer-name {
    font-weight: 600;
    color: #222;
    font-size: 1rem;
    display: block;
  }
  
  .reviewer-location {
    font-size: 0.9rem;
    color: #777;
    display: block;
  }
  
  .review-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .review-date {
    font-size: 0.9rem;
    color: #777;
    text-align: right;
    font-style: italic;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .google-reviews {
      padding: 30px 20px;
    }
    
    .google-reviews h3 {
      font-size: 1.8rem;
      margin-bottom: 30px;
    }
    
    .review-container {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .google-reviews {
      padding: 25px 15px;
    }
    
    .google-reviews h3 {
      font-size: 1.6rem;
    }
    
    .review {
      padding: 20px;
    }
  }
  /* Responsive Design */
  @media screen and (max-width: 1024px) {
    .text-container, 
    .image-container {
      max-width: 100%;
    }
    
    .text-container {
      margin-left: 0;
    }
  }
  
  @media screen and (max-width: 768px) {
    main {
      margin-top: 80px;
      padding: 20px 15px;
    }
    
    #brake-service-section {
      flex-direction: column;
      gap: 30px;
    }
    
    .text-container h1 {
      font-size: 2rem;
    }
    
    .additional-content,
    .acura-info-section,
    .faq-section,
    .article-section {
      padding: 40px 25px;
    }
    
    .topics-section {
      padding: 40px 15px;
    }
    
    .button-group {
      justify-content: center;
    }
  }
  
  @media screen and (max-width: 480px) {
    .text-container h1 {
      font-size: 1.8rem;
    }
    
    .text-container h3 {
      font-size: 1.3rem;
    }
    
    .additional-content h2,
    .acura-info-section h2,
    .faq-section h2,
    .article-header h2,
    .google-reviews h3 {
      font-size: 1.8rem;
    }
    
    .button {
      width: 100%;
    }
    
    .review-container {
      grid-template-columns: 1fr;
    }
  }