* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--light-gray);
  border-top: 4px solid var(--green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

:root {
  --navy-blue: #1a3a5c;
  --light-navy: #2e4e6e;
  --green: #3dd598;
  --dark-green: #2ab57a;
  --light-gray: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --white: #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.top-banner {
  background: var(--green);
  color: var(--white);
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.top-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.banner-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.banner-link:hover {
  opacity: 0.85;
}

.icon {
  width: 18px;
  height: 18px;
}

.header {
  background: var(--white);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--navy-blue);
}

.logo-main {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-tagline {
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.3px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--green);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown.active .arrow {
  transform: rotate(180deg);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  transition: background 0.3s ease;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
  color: var(--green);
}

.btn-contact {
  background: var(--green);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-contact:hover {
  background: var(--dark-green);
  color: var(--white);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--navy-blue);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hero {
  background: linear-gradient(rgba(26, 58, 92, 0.85), rgba(26, 58, 92, 0.85)),
              url('https://storage.googleapis.com/campaign-website-images/10006/pexels-photo-7282818%20(1).webp') center/cover;
  color: var(--white);
  padding: 120px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 213, 152, 0.3);
  color: var(--white);
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--light-gray);
}

.section-dark {
  background: var(--navy-blue);
  color: var(--white);
}

.section-title {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--navy-blue);
  font-weight: 700;
}

.section-dark .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--navy-blue);
  line-height: 1.3;
}

.content p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}

.image-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(61, 213, 152, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--green);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--navy-blue);
}

.service-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 35px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--light-gray);
}

.testimonial-author h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-blue);
  margin: 0;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  max-width: 800px;
}

.benefits-list .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0;
  background: transparent;
  border: none;
  transition: none;
  cursor: default;
  pointer-events: none;
}

.benefits-list .benefit-item:hover {
  transform: none;
  background: transparent;
  box-shadow: none;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.check-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--white);
  stroke-width: 3;
}

.benefits-list .benefit-item p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.cta-section {
  background: var(--navy-blue);
  color: var(--white);
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-size: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

.contact-item:hover {
  color: var(--green);
}

.footer {
  background: var(--navy-blue);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-section ul a:hover {
  color: var(--green);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-list .icon {
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--green);
}

.page-header {
  background: linear-gradient(rgba(26, 58, 92, 0.85), rgba(26, 58, 92, 0.85)),
              url('https://storage.googleapis.com/campaign-website-images/10006/pexels-photo-7282818%20(1).webp') center/cover;
  color: var(--white);
  padding: 100px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  color: var(--green);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--navy-blue);
}

.legal-content h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--navy-blue);
}

.legal-content p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 10px;
  line-height: 1.8;
  color: var(--text-light);
}

.stats-section {
  background: linear-gradient(135deg, var(--green), #2ab57a);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  color: var(--white);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.95;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.benefits-grid .benefit-item {
  text-align: center;
  padding: 30px 20px;
}

.benefit-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--green), #2ab57a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: transform 0.3s ease;
}

.benefits-grid .benefit-item:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon svg {
  stroke: var(--white);
}

.benefits-grid .benefit-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 16px;
}

.benefits-grid .benefit-item p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-choose-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
}

.why-choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.why-choose-icon-circle {
  width: 80px;
  height: 80px;
  background: rgba(61, 213, 152, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon-circle {
  background: rgba(61, 213, 152, 0.15);
  transform: scale(1.05);
}

.why-choose-icon-circle svg {
  stroke: var(--green);
}

.why-choose-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 14px;
  line-height: 1.3;
}

.why-choose-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 36px;
  }

  .why-choose-card {
    padding: 36px 24px;
  }
}

.quote-form-section {
  background: var(--light-navy);
  padding: 80px 40px;
  text-align: center;
  color: var(--white);
}

.quote-form-section h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: var(--white);
  font-weight: 700;
}

.quote-form-section > p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 50px;
  font-size: 17px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.quote-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  background: var(--white);
  color: var(--text-dark);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: start;
  gap: 10px;
  text-align: left;
  margin-top: 10px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  cursor: pointer;
}

.form-privacy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  text-align: left;
  line-height: 1.6;
}

.form-privacy a {
  color: var(--white);
  text-decoration: underline;
}

.form-privacy a:hover {
  opacity: 0.9;
}

.btn-submit {
  background: var(--green);
  color: var(--white);
  padding: 14px 40px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  align-self: center;
}

.btn-submit:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 213, 152, 0.3);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.faq-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.faq-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--green), #4CAF50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.faq-card-icon svg {
  stroke: var(--white);
}

.faq-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 16px;
  line-height: 1.4;
}

.faq-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
  margin: 0;
}

@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Specific Styles */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.contact-info-section p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 60px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-method {
  display: flex;
  gap: 20px;
  align-items: start;
}

.contact-method-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-method-info p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-method-info a {
  color: var(--navy-blue);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.contact-form-section {
  background: #f9fafb;
  padding: 40px;
  border-radius: 12px;
}

.contact-form-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-form-section > p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  color: var(--text-dark);
}

.contact-form-group textarea {
  resize: vertical;
}

.contact-form-checkbox {
  display: flex;
  align-items: start;
  gap: 8px;
}

.contact-form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.contact-form-checkbox label {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  cursor: pointer;
}

.contact-form-privacy {
  font-size: 12px;
  color: var(--text-light);
}

.contact-form-privacy a {
  color: var(--navy-blue);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .top-banner {
    padding: 12px 0;
    font-size: 13px;
  }

  .top-banner-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .banner-item {
    justify-content: center;
    width: 100%;
  }

  .logo-main {
    font-size: 22px;
  }

  .logo-tagline {
    font-size: 12px;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    margin: 0;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .mobile-toggle {
    display: flex;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 30px 25px 25px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .content h2 {
    font-size: 26px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .quote-form-section {
    padding: 60px 20px;
  }

  .quote-form-section h2 {
    font-size: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Contact Page Mobile Styles */
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-section h2 {
    font-size: 32px;
  }

  .contact-info-section p {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .contact-methods {
    gap: 30px;
  }

  .contact-form-section {
    padding: 30px 20px;
  }

  .contact-form-section h2 {
    font-size: 24px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
