.benefits-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f0fdfa, #ffffff);
  text-align: justify;
}
.section-title1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1f628e;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.benefit-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.benefit-card .icon {
  font-size: 2.8rem;
  margin-bottom: 15px;
}
.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #038084;
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}



/* Section Layout */
.sustainability-modern {
  background: linear-gradient(135deg, #f0fdfa, #ffffff);
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
}

.sustainability-modern::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(3,128,132,0.15), transparent);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
  z-index: 1;
}

.container {
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

/* Left Text */
.text-area {
  flex: 1 1 600px;
  animation: fadeInUp 1.2s ease both;
}

.text-area h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #1F628E;
}

.text-area h2 span {
  font-size: 1rem;
  font-weight: 600;
  color: #038084;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align:center;
}

.text-area p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
}

.eco-list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.eco-list li {
  margin: 8px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: #1F628E;
  position: relative;
  padding-left: 30px;
}

.eco-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #038084;
  font-weight: bold;
}

/* Right CTA Card */
.cta-box {
  flex: 1 1 350px;
  background: linear-gradient(135deg, #1F628E, #038084);
  border-radius: 20px;
  color: #fff;
  text-align: center;
  padding: 50px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  animation: fadeInRight 1.2s ease both;
}

.cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta-box .phone {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 25px;
  text-decoration: none;
  color: #fff;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #038084;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #f0fdfa;
  transform: translateY(-3px);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-25px); }
}

@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInRight {
  from {opacity: 0; transform: translateX(50px);}
  to {opacity: 1; transform: translateX(0);}
}


.video-section {
  background: linear-gradient(135deg, #e6f7f4, #ffffff);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: rgba(3,128,132,0.1);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
}

.video-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(31,98,142,0.1);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

.video-heading h2 {
  font-size: 2.3rem;
  color: #1F628E;
  margin-bottom: 10px;
  animation: fadeInUp 1.2s ease both;
}

.video-heading p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 40px;
  animation: fadeInUp 1.5s ease both;
}

.video-frame {
  max-width: 900px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  transform: scale(0.95);
  transition: all 0.5s ease;
  animation: fadeIn 2s ease both;
}

.video-frame:hover {
  transform: scale(1) translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}


.sustainability-section {
  padding: 80px 20px;
  background: #f9fdf9;
  text-align: center;
}
.section-title1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1f628e;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}
.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Always 4 in a row */
  gap: 25px;
}
.sustainability-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sustainability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.sustainability-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.sustainability-card h3 {
  font-size: 1.2rem;
  color: #038084;
  margin-bottom: 15px;
}
.sustainability-card ul {
  padding-left: 20px;
  color: #444;
}
.sustainability-card ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .sustainability-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}
@media (max-width: 768px) {
  .sustainability-grid {
    grid-template-columns: 1fr; /* Stack on mobile */
  }
}


.sustainability-cta {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
/*  padding: 120px 20px;*/
  color: #fff;
  text-align: center;
  height: 500px;
}
.sustainability-cta .overlay1 {
  background: rgba(0,0,0,0.55); /* Dark overlay for readability */
  padding: 150px 50px;
}
.sustainability-cta .cta-content {
  max-width: 850px;
  margin: auto;
}
.sustainability-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}
.sustainability-cta p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e5e5e5;
}
.sustainability-cta .highlight1 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #a4f5c8; /* subtle eco-green highlight */
}

.sustain-banner {
  width: 100%;
  height: 540px;
  overflow: hidden;
  position: relative;
}

.sustain-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps image proportions, crops if needed */
  object-position: center; /* centers the image */
  display: block;
}



  
   /* ENS Page Specific Styles */
.ens-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1590650516494-0c8e4a4dd67b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1771&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.ens-section-title {
    border-bottom: 2px solid #0d3ecf;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: #1f628e;
    font-weight: 700;
}

.ens-info-card {
    border-left: 4px solid #0d3ecf;
    padding-left: 20px;
    margin-bottom: 30px;
}

.ens-service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.ens-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.ens-benefit-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 15px;
    display: block;
}

.ens-document-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ens-document-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.ens-document-list li:before {
    content: "•";
    color: #0d3ecf;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.ens-contact-cta {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 50px;
    text-align: center;
}

.ens-primary-bg {
    background: #0d3ecf;
    color: white;
}

.ens-light-bg {
    background: #f8f9fa;
}

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

.ens-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.ens-col {
    padding: 0 15px;
    flex: 1;
    min-width: 300px;
}

.ens-col-12 { flex: 0 0 100%; }
.ens-col-lg-8 { flex: 0 0 66.666%; }
.ens-col-lg-4 { flex: 0 0 33.333%; }
.ens-col-md-6 { flex: 0 0 50%; }
.ens-col-lg-3 { flex: 0 0 25%; }

.ens-card1 {
    background: #0d6efd;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    border: 1px solid #eee;
}

.ens-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    border: 1px solid #eee;
}

.ens-text-center { text-align: center; }
.ens-text-white { color: white; }
.ens-mb-4 { margin-bottom: 1.5rem; color:#1f628e; }
.ens-mb-5 { margin-bottom: 3rem; }
.ens-mt-5 { margin-top: 3rem; }
.ens-py-5 { padding: 80px 0; }

.ens-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #e63946;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.ens-btn:hover {
    background: #0d3ecf;
    transform: translateY(-2px);
}

.ens-btn-light {
    background: white;
    color: #0d3ecf;
}

.ens-btn-light:hover {
    background: #f8f9fa;
    color: #0d3ecf;
}

.ens-lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
}

.ens-display-6 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
}

/* Simple List Styles */
.ens-simple-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ens-simple-list li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #0d3ecf;
}

.ens-img-fluid {
    max-width: 100%;
    height: auto;
    margin-top:25px;
}

.ens-rounded {
    border-radius: 10px;
}

.ens-shadow-sm {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ens-col {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .ens-py-5 {
        padding: 50px 0;
    }
    
    .ens-contact-cta {
        padding: 30px 20px;
    }
    
    .ens-section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .ens-container {
        padding: 0 15px;
    }
    
    .ens-service-card,
    .ens-card {
        padding: 20px;
    }
    
    .ens-py-5 {
        padding: 40px 0;
    }
}


/* Fix for ENS Section Icons */
.ens-icon-wrapper {
    margin-bottom: 20px;
}

.ens-icon-wrapper i {
    font-size: 1.5rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.ens-col:hover .ens-icon-wrapper i {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.ens-primary-bg h5 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

.ens-primary-bg p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Ensure Font Awesome is loaded */
.ens-primary-bg .fas,
.ens-primary-bg .far,
.ens-primary-bg .fab {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* Alternative icon solution if Font Awesome still doesn't work */
.ens-icon-wrapper::before {
    content: "";
    display: none; /* Hidden by default */
}

/* Fallback using Unicode if Font Awesome fails */
.ens-icon-fallback {
    display: none;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ens-icon-wrapper i {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }
    
    .ens-primary-bg h5 {
        font-size: 1.2rem;
    }
}



.eu-preference { 
    font-family: 'Segoe UI', sans-serif; 
    padding: 60px 20px; 
    background: #f9fafc; 
    color: #333; 
}

.container { 
    max-width: 1300px; 
    margin: auto; 
    padding: 0 15px;
}

.section-header { 
    border-bottom: 2px solid #0d3ecf;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: #1f628e;
    font-weight: 700; 
}

.section-header h2 { 
    font-size: 32px; 
    color: #023e8a; 
    margin: 0;
}

/* Content grid */
.content-grid { 
    display: flex; 
    gap: 30px; 
    margin-bottom: 40px; 
    flex-wrap: wrap; 
}

.text-content { 
    flex: 2; 
    font-size: 16px; 
    line-height: 1.7; 
    color: #444; 
    min-width: 300px;
}

.text-content ul { 
    margin: 15px 0 0 20px; 
}

.cta-box { 
    flex: 1; 
    background: #0077b6; 
    color: #fff; 
    padding: 30px; 
    border-radius: 10px; 
    text-align: center;
    min-width: 280px;
}

.cta-box h3 { 
    margin: 15px 0; 
    font-size: 1.5rem;
}

.cta-box p { 
    font-size: 20px; 
    margin-bottom: 15px; 
}

.cta-btn { 
    display: inline-block; 
    padding: 12px 24px; 
    background: #fff; 
    color: #0077b6; 
    font-weight: bold; 
    text-decoration: none; 
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-btn:hover { 
    background: #023e8a; 
    color: #fff; 
    transform: translateY(-2px);
}

/* General content */
.full-width-content { 
    margin-bottom: 40px; 
}

.full-width-content ul { 
    margin: 15px 0 0 20px; 
}

/* Benefits */
.benefits-section { 
    margin-bottom: 50px; 
}

.benefits-section h3 { 
    margin-bottom: 15px; 
    color: #023e8a; 
    font-size: 1.5rem;
}

.benefits-section ul { 
    margin: 15px 0 0 20px; 
}

.benefits-section ul li { 
    margin-bottom: 15px; 
}

.benefits-section p { 
    margin-bottom: 15px; 
}

.benefits-section h1 { 
    margin-bottom: 15px; 
    color: #023e8a; 
    border-bottom: 2px solid #0d3ecf;
    font-size: 2.5rem;
    color: #1f628e;
    font-weight: 700;
    padding-bottom: 10px;
}

/* Documents */
.documents-section h3 { 
    margin-bottom: 20px; 
    color: #023e8a; 
    font-size: 1.5rem;
}

.doc-box { 
    display: flex; 
    gap: 30px; 
    align-items: center; 
    background: #e9f5ff; 
    padding: 25px; 
    border-radius: 10px; 
    flex-wrap: wrap; 
}

.doc-box ul { 
    flex: 1; 
    margin: 0; 
    min-width: 250px;
}

.doc-box li { 
    margin: 10px 0; 
    font-weight: 500; 
}

.doc-box img { 
    max-width: 180px; 
    border-radius: 6px; 
    height: auto;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .benefits-section h1 {
        font-size: 2.2rem;
    }
    
    .content-grid {
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .eu-preference {
        padding: 50px 20px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .benefits-section h1 {
        font-size: 2rem;
    }
    
    .text-content {
        flex: 100%;
    }
    
    .cta-box {
        flex: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .content-grid {
        flex-direction: column;
    }
    
    .doc-box {
        gap: 25px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .eu-preference {
        padding: 40px 15px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .benefits-section h1 {
        font-size: 1.8rem;
    }
    
    .cta-box {
        padding: 25px 20px;
    }
    
    .cta-box h3 {
        font-size: 1.3rem;
    }
    
    .cta-box p {
        font-size: 18px;
    }
    
    .text-content {
        font-size: 16px;
        min-width: auto;
    }
    
    .doc-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px 15px;
    }
    
    .doc-box ul {
        min-width: auto;
        width: 100%;
    }
    
    .doc-box img {
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .eu-preference {
        padding: 30px 10px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .benefits-section h1 {
        font-size: 1.6rem;
    }
    
    .benefits-section h3,
    .documents-section h3 {
        font-size: 1.3rem;
    }
    
    .cta-box {
        padding: 20px 15px;
        min-width: auto;
    }
    
    .cta-box h3 {
        font-size: 1.2rem;
        margin: 10px 0;
    }
    
    .cta-box p {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .text-content {
        font-size: 14px;
    }
    
    .doc-box {
        padding: 15px 12px;
    }
    
    .doc-box img {
        max-width: 120px;
    }
    
    .content-grid {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .full-width-content {
        margin-bottom: 30px;
    }
    
    .benefits-section {
        margin-bottom: 40px;
    }
}

@media (max-width: 400px) {
    .section-header h2 {
        font-size: 20px;
    }
    
    .benefits-section h1 {
        font-size: 1.4rem;
    }
    
    .cta-box {
        padding: 15px 12px;
    }
    
    .cta-box p {
        font-size: 15px;
    }
    
    .doc-box img {
        max-width: 100px;
    }
    
    .text-content ul,
    .full-width-content ul,
    .benefits-section ul {
        margin-left: 15px;
    }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    .section-header {
        text-align: center;
    }
    
    .benefits-section h1 {
        text-align: center;
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .cta-btn:hover {
        transform: none;
        background: #fff;
        color: #0077b6;
    }
    
    .cta-btn:active {
        background: #023e8a;
        color: #fff;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .eu-preference {
        background: #fff;
        color: #000;
    }
    
    .cta-box {
        background: #004c7a;
        border: 2px solid #000;
    }
    
    .doc-box {
        background: #d0e8ff;
        border: 1px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .cta-btn {
        transition: none;
    }
    
    .cta-btn:hover {
        transform: none;
    }
}

/* Section Container */
.tor-section {
  padding: 70px 0;
  background: #fff;
  font-family: Arial, sans-serif;
}

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

/* Section Title */
.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  color: #1073b6;
  width: 100%;
}

.title-underline {
  width: 60px;
  height: 3px;
  background: #0078d7;
  margin: 0 auto 40px;
  border-radius: 2px;
}

/* Top Row */
.tor-row {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.tor-left {
  flex: 3;
  min-width: 300px;
}

.tor-left p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.tor-left h2 {
  margin-bottom: 18px;
  font-size: 23px;
  line-height: 1.7;
  color: #2a74b7;
}

.tor-right {
  flex: 1;
  min-width: 280px;
}

.cta-box {
  background: #0078d7;
  color: #fff;
  padding: 35px 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cta-btn {
  display: inline-block;
  background: #fff;
  padding: 12px 22px;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 20px;
  transition: 0.3s;
  min-width: 160px;
}

.cta-btn:hover {
  background: #e65c00;
  transform: translateY(-2px);
}

.cta-box h4 {
  margin: 15px 0 10px;
  font-size: 18px;
}

.cta-box .phone {
  font-size: 22px;
  font-weight: bold;
}

/* Bottom Row */
.tor-bottom {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
  align-items: stretch;
}

.doc-box {
  flex: 1;
  background: linear-gradient(135deg, #0078d7, #005bb5);
  color: #fff;
  padding: 35px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 300px;
}

.doc-box::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

.doc-box h3 {
  margin-bottom: 25px;
  font-size: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
}

.doc-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doc-box ul li {
  font-size: 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}

.doc-box ul li span {
  margin-right: 10px;
  color: #00ff99;
  font-weight: bold;
  font-size: 18px;
}

/* Right Image */
.doc-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
}

.doc-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  transition: transform 0.4s ease;
  height: auto;
}

.doc-image:hover img {
  transform: scale(1.05);
}

/* =========================== */
/* RESPONSIVE STYLES */
/* =========================== */

@media (max-width: 1200px) {
  .tor-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .tor-row,
  .tor-bottom {
    gap: 30px;
  }
  
  .doc-box {
    padding: 30px;
  }
}

@media (max-width: 992px) {
  .tor-section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
  
  .title-underline {
    margin-bottom: 35px;
  }
  
  .tor-row {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .tor-left,
  .tor-right {
    flex: none;
    width: 100%;
  }
  
  .cta-box {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .tor-bottom {
    margin-top: 40px;
    gap: 30px;
  }
  
  .doc-box,
  .doc-image {
    flex: 1 1 100%;
  }
  
  .doc-image {
    order: -1; /* Image comes first on tablet */
  }
  
  .doc-image img {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .tor-section {
    padding: 40px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .title-underline {
    width: 50px;
    margin-bottom: 30px;
  }
  
  .tor-row {
    margin-bottom: 40px;
    gap: 25px;
  }
  
  .tor-left p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .cta-box {
    padding: 25px 20px;
  }
  
  .cta-btn {
    padding: 10px 18px;
    font-size: 14px;
    min-width: 140px;
  }
  
  .cta-box h4 {
    font-size: 16px;
  }
  
  .cta-box .phone {
    font-size: 20px;
  }
  
  .tor-bottom {
    margin-top: 30px;
    gap: 25px;
  }
  
  .doc-box {
    padding: 25px 20px;
    min-width: 250px;
  }
  
  .doc-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .doc-box ul li {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .doc-box ul li span {
    font-size: 16px;
  }
  
  .doc-image {
    min-width: 250px;
  }
  
  .doc-image img {
    max-width: 350px;
  }
}

@media (max-width: 576px) {
  .tor-section {
    padding: 30px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .title-underline {
    width: 40px;
    height: 2px;
    margin-bottom: 25px;
  }
  
  .tor-row {
    margin-bottom: 30px;
    gap: 20px;
  }
  
  .tor-left p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
    text-align: justify;
  }
  
  .cta-box {
    padding: 20px 15px;
  }
  
  .cta-btn {
    padding: 8px 16px;
    font-size: 13px;
    min-width: 120px;
    margin-bottom: 15px;
  }
  
  .cta-box h4 {
    font-size: 15px;
    margin: 12px 0 8px;
  }
  
  .cta-box .phone {
    font-size: 18px;
  }
  
  .tor-bottom {
    margin-top: 25px;
    gap: 20px;
  }
  
  .doc-box {
    padding: 20px 15px;
    min-width: auto;
  }
  
  .doc-box h3 {
    font-size: 16px;
    margin-bottom: 18px;
  }
  
  .doc-box ul li {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .doc-box ul li span {
    font-size: 14px;
    margin-right: 8px;
  }
  
  .doc-image {
    min-width: auto;
  }
  
  .doc-image img {
    max-width: 100%;
  }
  
  .doc-box::before {
    width: 100px;
    height: 100px;
    top: -30px;
    right: -30px;
  }
}

@media (max-width: 400px) {
  .tor-section {
    padding: 25px 0;
  }
  
  .container {
    padding: 0 10px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .tor-left p {
    font-size: 14px;
  }
  
  .cta-box {
    padding: 18px 12px;
  }
  
  .cta-btn {
    padding: 7px 14px;
    font-size: 12px;
  }
  
  .doc-box {
    padding: 18px 12px;
  }
  
  .doc-box h3 {
    font-size: 15px;
  }
  
  .doc-box ul li {
    font-size: 12px;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .cta-btn:hover {
    transform: none;
  }
  
  .doc-image:hover img {
    transform: none;
  }
  
  .cta-btn:active {
    background: #fff;
    transform: scale(0.98);
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .cta-box {
    border: 2px solid #000;
  }
  
  .doc-box {
    border: 2px solid #000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .cta-btn,
  .doc-image img {
    transition: none;
  }
  
  .cta-btn:hover,
  .doc-image:hover img {
    transform: none;
  }
  
  .doc-box::before {
    animation: none;
  }
}

/* Print styles */
@media print {
  .tor-section {
    padding: 20px 0;
    background: #fff !important;
  }
  
  .cta-box,
  .doc-box {
    box-shadow: none;
    border: 1px solid #000;
  }
  
  .doc-image {
    display: none;
  }
}



.import-section {
  padding: 70px 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
}


/* Intro Row */
.intro-row {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.intro-left {
  flex: 3;
  min-width: 300px;
}

.intro-left p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.intro-right {
  flex: 1;
  min-width: 280px;
}

.cta-box {
  background: #2a74b7;
  color: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cta-btn {
  display: inline-block;
  background: #fff;
  padding: 12px 20px;
  border-radius: 4px;
  color: #2a74b7;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 15px;
  transition: 0.3s;
  min-width: 140px;
}

.cta-btn:hover {
  background: #e63946;
  transform: translateY(-2px);
	color:#fff;
}

.cta-box h4 {
  margin: 10px 0;
  font-size: 18px;
}

.cta-box .phone {
  font-size: 22px;
  font-weight: bold;
}

/* Why Section */
.why-section {
  margin-bottom: 50px;
	  color: #444;

	
}

.why-section h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2a74b7;
}

.why-section h1 {
margin-bottom: 1.5rem;
    color: #2a74b7;
}

.why-section h2 {
  font-size: 23px;
  margin-bottom: 15px;
  color: #2a74b7;
}
.why-section ol {
  padding-left: 20px;
}

.why-section li {
  margin-bottom: 15px;
  line-height: 1.6;
}

.why-section ul {
  padding-left: 20px;
}

.why-section ul li {
  margin-bottom: 15px;
  line-height: 1.6;

}



/* Why Section1 */
.why-section1 {
  margin-bottom: 50px;
	  color: #444;
}

.why-section1 h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2a74b7;
}

.why-section1 h1 {
margin-bottom: 1.5rem;
    color: #2a74b7;
}

.why-section1 h2 {
  font-size: 23px;
  margin-bottom: 15px;
  color: #2a74b7;
}
.why-section1 ol {
  padding-left: 20px;
}

.why-section1 li {
  margin-bottom: 15px;
  line-height: 1.6;
}

.why-section1 ul {
  padding-left: 20px;
}

.why-section1 ul li {
  margin-bottom: 15px;
  line-height: 1.6;

}

.why-section1 p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.7;
	color: #444;}


/* TOR Number Section */
.tor-number h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2a74b7;
}

.tor-number h1 {
  margin-bottom: 1.5rem;
    color: #1f628e;
}

.tor-number p {
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Bottom Row */
.bottom-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  align-items: stretch;
}

.doc-box {
  flex: 1;
  background: #2a74b7;
  color: #fff;
  padding: 30px;
  border-radius: 8px;
  min-width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.doc-box h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

.doc-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doc-box li {
  margin-bottom: 12px;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
}

.doc-box li:before {
  content: "•";
  color: #ff6600;
  font-weight: bold;
  font-size: 18px;
  margin-right: 10px;
  line-height: 1;
}

.doc-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
}

.doc-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  height: auto;
  transition: transform 0.3s ease;
}

.doc-image:hover img {
  transform: scale(1.03);
}

/* =========================== */
/* RESPONSIVE STYLES */
/* =========================== */

@media (max-width: 1200px) {
  .intro-row,
  .bottom-row {
    gap: 30px;
  }
  
  .intro-left p,
  .tor-number p,
  .why-section li {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .intro-row {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .intro-left,
  .intro-right {
    flex: none;
    width: 100%;
  }
  
  .cta-box {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .why-section,
  .tor-number {
    margin-bottom: 40px;
  }
  
  .bottom-row {
    margin-top: 30px;
    gap: 30px;
  }
  
  .doc-box,
  .doc-image {
    flex: 1 1 100%;
  }
  
  .doc-image {
    order: -1; /* Image comes first on tablet */
  }
}

@media (max-width: 768px) {
  .intro-row {
    margin-bottom: 30px;
    gap: 25px;
  }
  
  .intro-left {
    min-width: 250px;
  }
  
  .intro-left p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .cta-box {
    padding: 25px 15px;
    min-width: 250px;
  }
  
  .cta-btn {
    padding: 10px 18px;
    font-size: 14px;
    min-width: 130px;
  }
  
  .cta-box h4 {
    font-size: 16px;
  }
  
  .cta-box .phone {
    font-size: 20px;
  }
  
  .why-section,
  .tor-number {
    margin-bottom: 30px;
  }
  
  .why-section h3,
  .tor-number h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .why-section li,
  .tor-number p {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .bottom-row {
    margin-top: 25px;
    gap: 25px;
  }
  
  .doc-box {
    padding: 25px 20px;
    min-width: 250px;
  }
  
  .doc-box h3 {
    font-size: 18px;
    margin-bottom: 18px;
  }
  
  .doc-box li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .doc-image {
    min-width: 250px;
  }
  
  .doc-image img {
    max-width: 350px;
  }
}

@media (max-width: 576px) {
  .intro-row {
    margin-bottom: 25px;
    gap: 20px;
  }
  
  .intro-left {
    min-width: auto;
  }
  
  .intro-left p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
    text-align: justify;
  }
  
  .cta-box {
    padding: 20px 15px;
    min-width: auto;
  }
  
  .cta-btn {
    padding: 8px 16px;
    font-size: 13px;
    min-width: 120px;
    margin-bottom: 12px;
  }
  
  .cta-box h4 {
    font-size: 15px;
    margin: 8px 0;
  }
  
  .cta-box .phone {
    font-size: 18px;
  }
  
  .why-section,
  .tor-number {
    margin-bottom: 25px;
  }
  
  .why-section h3,
  .tor-number h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .why-section li,
  .tor-number p {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .why-section ol {
    padding-left: 15px;
  }
  
  .bottom-row {
    margin-top: 20px;
    gap: 20px;
  }
  
  .doc-box {
    padding: 20px 15px;
    min-width: auto;
  }
  
  .doc-box h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .doc-box li {
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .doc-box li:before {
    font-size: 16px;
    margin-right: 8px;
  }
  
  .doc-image {
    min-width: auto;
  }
  
  .doc-image img {
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .intro-row {
    margin-bottom: 20px;
    gap: 15px;
  }
  
  .intro-left p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  
  .cta-box {
    padding: 18px 12px;
  }
  
  .cta-btn {
    padding: 7px 14px;
    font-size: 12px;
    min-width: 110px;
  }
  
  .cta-box h4 {
    font-size: 14px;
  }
  
  .cta-box .phone {
    font-size: 16px;
  }
  
  .why-section,
  .tor-number {
    margin-bottom: 20px;
  }
  
  .why-section h3,
  .tor-number h3 {
    font-size: 16px;
  }
  
  .why-section li,
  .tor-number p {
    font-size: 12px;
  }
  
  .bottom-row {
    margin-top: 15px;
    gap: 15px;
  }
  
  .doc-box {
    padding: 15px 12px;
  }
  
  .doc-box h3 {
    font-size: 15px;
  }
  
  .doc-box li {
    font-size: 12px;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .cta-btn:hover {
    transform: none;
  }
  
  .doc-image:hover img {
    transform: none;
  }
  
  .cta-btn:active {
    background: #e65c00;
    transform: scale(0.98);
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .cta-box,
  .doc-box {
    border: 2px solid #000;
  }
  
  .cta-btn {
    border: 1px solid #000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .cta-btn,
  .doc-image img {
    transition: none;
  }
  
  .cta-btn:hover,
  .doc-image:hover img {
    transform: none;
  }
}

/* Print styles */
@media print {
  .cta-box,
  .doc-box {
    box-shadow: none;
    border: 1px solid #000;
  }
  
  .doc-image {
    display: none;
  }
  
  .cta-btn {
    background: #ccc !important;
    color: #000 !important;
  }
}

/* Content Row */
.opr-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
  align-items: flex-start;
}

.opr-left {
  flex: 2;
  min-width: 300px;
}

.opr-left p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.opr-right {
  flex: 1;
  min-width: 280px;
}

.opr-box {
  background: #1073b6;
  color: white;
  padding: 35px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.opr-box::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -40px;
  right: -40px;
}

.opr-btn {
  background: #00aaff;
  color: white;
  padding: 14px 22px;
  border: none;
  border-radius: 5px;
  margin-bottom: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
  min-width: 160px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.opr-btn:hover {
  background: #008fcc;
  transform: translateY(-2px);
}

.opr-call {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 500;
}

.opr-number {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

/* Document Row */
.document-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: stretch;
  margin-top: 50px;
}

.doc-box {
  flex: 1;
  background: #0066cc;
  color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-width: 300px;
  position: relative;
  overflow: hidden;
}

.doc-box::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  bottom: -30px;
  left: -30px;
}

.doc-box h3 {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.doc-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.doc-box li {
  margin-bottom: 12px;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

.check {
  color: #00ffcc;
  margin-right: 8px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}

.doc-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
}

.doc-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  height: auto;
  transition: transform 0.3s ease;
  max-width: 500px;
}

.doc-img:hover img {
  transform: scale(1.03);
}

/* =========================== */
/* RESPONSIVE STYLES */
/* =========================== */

@media (max-width: 1200px) {
  .opr-row,
  .document-row {
    gap: 25px;
  }
  
  .opr-left p {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .opr-row {
    flex-direction: column;
    margin-bottom: 40px;
    gap: 25px;
  }
  
  .opr-left,
  .opr-right {
    flex: none;
    width: 100%;
  }
  
  .opr-box {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .document-row {
    margin-top: 40px;
    gap: 25px;
  }
  
  .doc-box,
  .doc-img {
    flex: 1 1 100%;
  }
  
  .doc-img {
    order: -1; /* Image comes first on tablet */
  }
}

@media (max-width: 768px) {
  .opr-row {
    margin-bottom: 35px;
    gap: 20px;
  }
  
  .opr-left {
    min-width: 250px;
  }
  
  .opr-left p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
  }
  
  .opr-box {
    padding: 30px 20px;
    min-width: 250px;
  }
  
  .opr-btn {
    padding: 12px 20px;
    font-size: 14px;
    min-width: 140px;
    margin-bottom: 18px;
  }
  
  .opr-call {
    font-size: 16px;
  }
  
  .opr-number {
    font-size: 22px;
  }
  
  .document-row {
    margin-top: 35px;
    gap: 20px;
  }
  
  .doc-box {
    padding: 25px 20px;
    min-width: 250px;
  }
  
  .doc-box h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  
  .doc-box li {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .check {
    font-size: 16px;
    margin-right: 6px;
  }
  
  .doc-img {
    min-width: 250px;
  }
  
  .doc-img img {
    max-width: 400px;
  }
  
  .opr-box::before {
    width: 100px;
    height: 100px;
    top: -30px;
    right: -30px;
  }
  
  .doc-box::before {
    width: 80px;
    height: 80px;
    bottom: -20px;
    left: -20px;
  }
}

@media (max-width: 576px) {
  .opr-row {
    margin-bottom: 30px;
    gap: 15px;
  }
  
  .opr-left {
    min-width: auto;
  }
  
  .opr-left p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
    text-align: justify;
  }
  
  .opr-box {
    padding: 25px 15px;
    min-width: auto;
  }
  
  .opr-btn {
    padding: 10px 18px;
    font-size: 13px;
    min-width: 130px;
    margin-bottom: 15px;
  }
  
  .opr-call {
    font-size: 15px;
  }
  
  .opr-number {
    font-size: 20px;
  }
  
  .document-row {
    margin-top: 30px;
    gap: 15px;
  }
  
  .doc-box {
    padding: 20px 15px;
    min-width: auto;
  }
  
  .doc-box h3 {
    font-size: 16px;
    margin-bottom: 14px;
  }
  
  .doc-box li {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .check {
    font-size: 14px;
    margin-right: 6px;
  }
  
  .doc-img {
    min-width: auto;
  }
  
  .doc-img img {
    max-width: 100%;
  }
  
  .opr-box::before {
    width: 80px;
    height: 80px;
    top: -20px;
    right: -20px;
  }
  
  .doc-box::before {
    width: 60px;
    height: 60px;
    bottom: -15px;
    left: -15px;
  }
}

@media (max-width: 400px) {
  .opr-row {
    margin-bottom: 25px;
    gap: 12px;
  }
  
  .opr-left p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  
  .opr-box {
    padding: 20px 12px;
  }
  
  .opr-btn {
    padding: 8px 16px;
    font-size: 12px;
    min-width: 120px;
    margin-bottom: 12px;
  }
  
  .opr-call {
    font-size: 14px;
  }
  
  .opr-number {
    font-size: 18px;
  }
  
  .document-row {
    margin-top: 25px;
    gap: 12px;
  }
  
  .doc-box {
    padding: 18px 12px;
  }
  
  .doc-box h3 {
    font-size: 15px;
    margin-bottom: 12px;
  }
  
  .doc-box li {
    font-size: 13px;
  }
  
  .check {
    font-size: 13px;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .opr-btn:hover {
    transform: none;
  }
  
  .doc-img:hover img {
    transform: none;
  }
  
  .opr-btn:active {
    background: #008fcc;
    transform: scale(0.98);
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .opr-box,
  .doc-box {
    border: 2px solid #000;
  }
  
  .opr-btn {
    border: 1px solid #000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .opr-btn,
  .doc-img img {
    transition: none;
  }
  
  .opr-btn:hover,
  .doc-img:hover img {
    transform: none;
  }
  
  .opr-box::before,
  .doc-box::before {
    animation: none;
  }
}

/* Print styles */
@media print {
  .opr-box,
  .doc-box {
    box-shadow: none;
    border: 1px solid #000;
    background: #f8f8f8 !important;
    color: #000 !important;
  }
  
  .opr-btn {
    background: #ccc !important;
    color: #000 !important;
    border: 1px solid #000;
  }
  
  .check {
    color: #000 !important;
  }
  
  .doc-img {
    display: none;
  }
}

/* Ensure proper text contrast */
.opr-box,
.doc-box {
  background: #1073b6;
}

.doc-box {
  background: #0066cc;
}

/* Focus states for accessibility */
.opr-btn:focus {
  outline: 2px solid #00aaff;
  outline-offset: 2px;
}

/* Loading state for images */
.doc-img img {
  background: #f0f0f0;
}


/* Content Row */
.gvms-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
  align-items: flex-start;
}

.gvms-left {
  flex: 2;
  min-width: 300px;
}

.gvms-left p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

.gvms-right {
  flex: 1;
  min-width: 280px;
}

.gvms-box {
  background: #004080;
  color: white;
  padding: 35px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.gvms-box::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -40px;
  right: -40px;
}

.gvms-btn {
  background: #00aaff;
  color: white;
  padding: 14px 22px;
  border: none;
  border-radius: 5px;
  margin-bottom: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
  min-width: 160px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.gvms-btn:hover {
  background: #008fcc;
  transform: translateY(-2px);
}

.gvms-call {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 500;
}

.gvms-number {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

/* Extra Estimate Content */
.estimate-extra {
  margin-top: 20px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.estimate-extra h4 {
  font-size: 16px;
  margin: 15px 0 8px;
  font-weight: 600;
  color: #00ffcc;
  border-bottom: 1px solid rgba(0, 255, 204, 0.3);
  padding-bottom: 5px;
}

.estimate-extra ul, .estimate-extra ol {
  padding-left: 18px;
  margin: 0 0 15px;
  font-size: 14px;
  line-height: 1.5;
}

.estimate-extra li {
  margin-bottom: 8px;
}

.trust-note {
  font-size: 14px;
  font-weight: 600;
  color: #ffee58;
  margin-top: 10px;
  text-align: center;
  padding: 8px 12px;
  background: rgba(255, 238, 88, 0.1);
  border-radius: 5px;
  border-left: 3px solid #ffee58;
}

/* Why Section */
.why-gmr {
  margin: 50px 0;
}

.why-gmr h3 {
  text-align: left;
  font-size: 26px;
  margin-bottom: 20px;
  color: #222;
  font-weight: 700;
}


.why-gmr h1 {
  border-bottom: 2px solid #0d3ecf;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 2.6rem;
    color: #1f628e;
    font-weight: 700;
}

.why-gmr p, .why-gmr ol {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.why-gmr ol {
  padding-left: 20px;
}

.why-gmr li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* =========================== */
/* RESPONSIVE STYLES */
/* =========================== */

@media (max-width: 1200px) {
  .gvms-row {
    gap: 25px;
  }
  
  .gvms-left p {
    font-size: 15px;
  }
  
  .why-gmr h3 {
    font-size: 24px;
  }
  
  .why-gmr p, .why-gmr ol {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .gvms-row {
    flex-direction: column;
    margin-bottom: 40px;
    gap: 25px;
  }
  
  .gvms-left, .gvms-right {
    flex: none;
    width: 100%;
  }
  
  .gvms-box {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .why-gmr {
    margin: 35px 0;
  }
  
  .why-gmr h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }
  
  .why-gmr p, .why-gmr ol {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .gvms-row {
    margin-bottom: 35px;
    gap: 20px;
  }
  
  .gvms-left {
    min-width: 250px;
  }
  
  .gvms-left p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
  }
  
  .gvms-box {
    padding: 30px 20px;
    min-width: 250px;
  }
  
  .gvms-btn {
    padding: 12px 20px;
    font-size: 14px;
    min-width: 140px;
    margin-bottom: 18px;
  }
  
  .gvms-call {
    font-size: 16px;
  }
  
  .gvms-number {
    font-size: 22px;
  }
  
  /* Extra Estimate Content - Mobile */
  .estimate-extra {
    margin-top: 15px;
  }
  
  .estimate-extra h4 {
    font-size: 15px;
    margin: 12px 0 6px;
  }
  
  .estimate-extra ul, .estimate-extra ol {
    font-size: 13px;
    padding-left: 16px;
    margin-bottom: 12px;
  }
  
  .estimate-extra li {
    margin-bottom: 6px;
  }
  
  .trust-note {
    font-size: 13px;
    margin-top: 8px;
    padding: 6px 10px;
  }
  
  /* Why Section - Mobile */
  .why-gmr {
    margin: 30px 0;
  }
  
  .why-gmr h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .why-gmr p, .why-gmr ol {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .why-gmr ol {
    padding-left: 18px;
  }
  
  .why-gmr li {
    margin-bottom: 10px;
  }
  
  .gvms-box::before {
    width: 100px;
    height: 100px;
    top: -30px;
    right: -30px;
  }
}

@media (max-width: 576px) {
  .gvms-row {
    margin-bottom: 30px;
    gap: 15px;
  }
  
  .gvms-left {
    min-width: auto;
  }
  
  .gvms-left p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    text-align: justify;
  }
  
  .gvms-box {
    padding: 25px 15px;
    min-width: auto;
  }
  
  .gvms-btn {
    padding: 10px 18px;
    font-size: 13px;
    min-width: 130px;
    margin-bottom: 15px;
  }
  
  .gvms-call {
    font-size: 15px;
  }
  
  .gvms-number {
    font-size: 20px;
  }
  
  /* Extra Estimate Content - Small Mobile */
  .estimate-extra {
    margin-top: 12px;
  }
  
  .estimate-extra h4 {
    font-size: 14px;
    margin: 10px 0 5px;
  }
  
  .estimate-extra ul, .estimate-extra ol {
    font-size: 12px;
    padding-left: 14px;
    margin-bottom: 10px;
  }
  
  .estimate-extra li {
    margin-bottom: 5px;
  }
  
  .trust-note {
    font-size: 12px;
    margin-top: 6px;
    padding: 5px 8px;
  }
  
  /* Why Section - Small Mobile */
  .why-gmr {
    margin: 25px 0;
  }
  
  .why-gmr h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }
  
  .why-gmr p, .why-gmr ol {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .why-gmr ol {
    padding-left: 16px;
  }
  
  .why-gmr li {
    margin-bottom: 8px;
  }
  
  .gvms-box::before {
    width: 80px;
    height: 80px;
    top: -20px;
    right: -20px;
  }
}

@media (max-width: 400px) {
  .gvms-row {
    margin-bottom: 25px;
    gap: 12px;
  }
  
  .gvms-left p {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .gvms-box {
    padding: 20px 12px;
  }
  
  .gvms-btn {
    padding: 8px 16px;
    font-size: 12px;
    min-width: 120px;
    margin-bottom: 12px;
  }
  
  .gvms-call {
    font-size: 14px;
  }
  
  .gvms-number {
    font-size: 18px;
  }
  
  /* Extra Estimate Content - Extra Small */
  .estimate-extra h4 {
    font-size: 13px;
  }
  
  .estimate-extra ul, .estimate-extra ol {
    font-size: 11px;
    padding-left: 12px;
  }
  
  .trust-note {
    font-size: 11px;
  }
  
  /* Why Section - Extra Small */
  .why-gmr h3 {
    font-size: 16px;
  }
  
  .why-gmr p, .why-gmr ol {
    font-size: 12px;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .gvms-btn:hover {
    transform: none;
  }
  
  .gvms-btn:active {
    background: #008fcc;
    transform: scale(0.98);
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .gvms-box {
    border: 2px solid #000;
  }
  
  .gvms-btn {
    border: 1px solid #000;
  }
  
  .trust-note {
    border: 1px solid #000;
    background: #ffff00 !important;
    color: #000 !important;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .gvms-btn {
    transition: none;
  }
  
  .gvms-btn:hover {
    transform: none;
  }
  
  .gvms-box::before {
    animation: none;
  }
}

/* Print styles */
@media print {
  .gvms-box {
    box-shadow: none;
    border: 1px solid #000;
    background: #f8f8f8 !important;
    color: #000 !important;
  }
  
  .gvms-btn {
    background: #ccc !important;
    color: #000 !important;
    border: 1px solid #000;
  }
  
  .estimate-extra h4 {
    color: #000 !important;
  }
  
  .trust-note {
    color: #000 !important;
    background: #ffffcc !important;
    border: 1px solid #000;
  }
}

/* Focus states for accessibility */
.gvms-btn:focus {
  outline: 2px solid #00aaff;
  outline-offset: 2px;
}

/* Ensure proper text contrast */
.estimate-extra h4 {
  color: #00ffcc;
}

.trust-note {
  color: #ffee58;
}

 .highlight {
      background: #f4faff;
      padding: 15px;
      border-left: 4px solid #0072ce;
      margin: 20px 0;
    }


