* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.top-header {
    padding: 15px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* logo */
.logo {
    height: 60px;      /* perfect size */
    width: auto;       /* prevents stretching */
    object-fit: contain;
    display: block;
}


.nav {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 14px;
}

/* DROPDOWN MENU */
/* NAVIGATION */
.nav {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav li {
    position: relative;
}

.nav a {
    text-decoration: none;
    color: #0a1a3c;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 5px;
    display: block;
}

/* ------- DROPDOWN MENU ------- */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.15);
    border-radius: 3px;
    padding: 0;
    list-style: none;
    display: none;
    z-index: 999;
}

.dropdown-menu li a {
    padding: 10px 15px;
    color: #333;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #f3f3f3;
    color: #0a1a3c;
}

/* SHOW MENU ON HOVER */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* FIX: Prevent click from redirecting */
.dropdown > a {
    cursor: pointer;
}

/* BANNER */
.banner {
    position: relative;
}

.banner-slider {
  width: 1200px;          /* adjust this for desired size */
  height: 550px;          /* adjust height if needed */
  overflow: hidden;
  position: relative;
  margin: 30px auto;      /* centers the banner */
  border-radius: 20px;    /* nice smooth curve all around */
  box-shadow: 0px 4px 20px rgba(0,0,0,0.15); /* optional nice shadow */
}

.banner-slider .slide {
  position: absolute;
  top: 2;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.banner-slider .slide.active {
  opacity: 1;
}

.banner-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 
}

/* Hide navigation arrows */
.banner-slider .nav {
  display: none !important;
}

.banner-slider .nav:hover {
  background: rgba(0,0,0,0.6);
}

.banner-slider .prev { left: 15px; }
.banner-slider .next { right: 15px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .menu-flex { flex-direction: column; }
    .main-nav a { margin: 10px; display: inline-block; }
    .slider-img { width: 100%; }
}
.line-wrapper {
    padding: 0 40px;  /* controls space from left and right */
}

.line {
    width: 100%;
    height: 2px;
    background: #ddd;
}

/* APPOINTMENT BAR */
.full-bar {
    width: 100%;
    background: #0a1a3c;
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
}

/* ABOUT SECTION */
.about-inner {
    width: 100%;
}

.about-inner p {
    max-width: 100%;
    width: 100%;
    text-align: justify;
    padding-left: 0;
    padding-right: 0;
    line-height: 1.7;
}

.more-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, opacity 0.35s ease;
    opacity: 0;
}

/* expanded state */
.more-content.show {
    max-height: 2000px; /* large enough for any content — adjust if you like */
    opacity: 1;
}

/* optional: nicer spacing when expanded */
.more-content p {
    margin: 12px 0;
}

/* style for the readmore button (you already have .btn; this complements it) */
.readmore-btn {
    margin-top: 20px;
    padding: 10px 22px;
    cursor: pointer;
    border-radius: 5px;
}

/* small accessible focus style */
.readmore-btn:focus {
    outline: 3px solid rgba(10,26,60,0.15);
    outline-offset: 3px;
}
.btn {
    margin-top: 25px;
    padding: 10px 22px;
    background: #0a1a3c;
    color: white;
    border: none;
    cursor: pointer;
}

.full-bar {
    background: #0a1a3c;
    color: white;
    padding: 12px 0;
    text-align: center;
    width: 100%;
    margin-bottom: 25px;
}
.about-inner p + p {
    margin-top: 18px;
}


/* WHY US */
.why-section {
    background: #f2f4f8;
    padding: 40px 0;
}

.why-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.why-inner .block {
    background: rgb(241, 239, 239);
    padding: 20px;
    margin-bottom: 20px;
    border-left: 3px solid #0a1a3c;
}

/* BLUE SECTION */
.blue-section {
    background: #f5f6f8;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.blue-section .know-more {
    color: #ffffff;
    text-decoration: underline;
    margin-top: 15px;
    display: inline-block;
}

/* SPECIALITIES */
.specialties {
    padding: 50px 0;
    text-align: center;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.spec-box {
    background: #0a1a3c;
    color: white;
    padding: 25px;
}

.spec-box a,
.spec-box a:visited,
.spec-box a:hover {
    color: #fff !important;     /* always white */
    font-weight: 700;           /* bold text */
    text-decoration: none;      /* remove underline */
}

/* ===================== PAGE TITLE ===================== */
.page-title {
    font-size: 28px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 25px;
}

/* ===================== OUR STORY SECTION ===================== */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    margin-bottom: 60px;
}

.about-story h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0a1a3c;
}

.about-story p {
    line-height: 1.7;
    font-size: 15px;
    color: #333;
}

/* ===================== CENTER QUOTE ===================== */
.center-quote {
    text-align: center;
    margin: 60px 0;
}

.center-quote h3 {
    font-size: 18px;
    color: #0a1a3c;
    font-weight: 600;
    margin-bottom: 10px;
}

.center-quote p {
    font-size: 14px;
    color: #444;
}

/* ===================== TIMELINE ===================== */
/* TIMELINE */
.timeline {
    width: 100%;
    max-width: 900px;   /* limits the width of the timeline */
    margin: 60px auto;  /* centers the timeline horizontally */
    padding: 0 20px;    /* optional: some padding for smaller screens */
    box-sizing: border-box;
}

.timeline-row {
    display: grid;
    grid-template-columns: 150px auto;
    padding: 20px 0;
    border-bottom: 1px solid #dcdcdc;
}

.timeline-row:last-child {
    border-bottom: none;
}

.timeline-year {
    font-weight: 700;
    color: #0a1a3c;
    text-align: right; /* aligns year to right of left column */
    padding-right: 15px;
}

.timeline-content {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .timeline-row {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
    }
    .timeline-year {
        text-align: left; /* align left on mobile */
        margin-bottom: 10px;
        padding-right: 0;
    }
}

/* DOCTORS SECTION */
.doctors-section {
    padding: 60px 0;
    text-align: center;
}

.doctors-section h2 {
    font-size: 24px;
    color: #0a1a3c;
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    justify-items: stretch; /* make items stretch */
}

.doctor-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* stretch to grid row height */
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.doctor-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.doctor-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.doctor-card p {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.doctor-card .btn {
    display: inline-block;
    background: #0a1a3c;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}

.doctor-card .btn:hover {
    background: #16254f;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .doctors-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media(max-width: 480px) {
    .doctors-grid {
        grid-template-columns: 1fr;
    }
}

/* image place holder tecnology */
      body {
        font-family: Arial, sans-serif;
        margin: 20px;
        background-color: #fff;
        color: #000;
    }
    h2.section-title {
        text-align: center;
        color: #1a237e;
        margin-bottom: 40px;
        text-transform: uppercase;
        font-size: 20px;
        letter-spacing: 1px;
    }
    .instrument {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }
    .instrument img {
        width: 200px;
        height: 150px;
        background-color: #eee;
        display: block;
    }
    .instrument-content {
        max-width: 800px;
    }
    .instrument-content h3 {
        margin: 0 0 10px;
        font-size: 16px;
        font-weight: bold;
        text-transform: uppercase;
    }
    .instrument-content p {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
    }

/* CONTACT US SECTION */

.contact-section {
    padding: 40px 80px;
}

.contact-title {
    font-size: 32px;
    margin-bottom: 30px;
}

.map-box img {
    width: 100%;
    height: 380px;
    background: #eaeaea;
    border: 1px solid #ccc;
    display: block;
}

.int-btn-box {
    margin-top: 20px;
    text-align: right;
}

.int-btn {
    background: #3fb4e6;
    color: white;
    border: none;
    padding: 12px 26px;
    border-radius: 40px;
    font-size: 14px;
    cursor: pointer;
}

.nearest-title {
    margin-top: 50px;
    font-weight: bold;
    color: #0a1a3c;
}

.nearest-grid {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    text-align: center;
}

.near-item {
    width: 33%;
}

.near-icon {
    width: 90px;
    height: 90px;
    background: #eaeaea;
    display: block;
    margin: 0 auto 10px;
}

.near-label {
    font-weight: 600;
    font-size: 14px;
}

.contact-info-grid {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.info-box {
    width: 33%;
}

.info-icon {
    width: 90px;
    height: 90px;
    background: #eaeaea;
    display: block;
    margin: 0 auto 15px;
}

.info-box h4 {
    margin-bottom: 5px;
    font-weight: bold;
}

.info-box p {
    margin: 0;
    font-size: 14px;
}

.info-box a {
    color: #3f62b8;
    text-decoration: none;
}

.copy {
    margin-top: 40px;
    text-align: center;
    opacity: 0.6;
}
/* knowmore SECTION */
.page-section {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
    font-family: Arial, sans-serif;
    line-height: 1.7;
}

.main-title {
    text-align: center;
    font-size: 26px;
    color: #0a1a3c;
    margin-bottom: 25px;
    font-weight: bold;
}

.sub-title {
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
}

.highlight-box {
    border: 1px solid #aaa;
    padding: 20px;
    margin: 25px 0;
    background: #f7f7f7;
    border-radius: 4px;
}

.center-img {
    display: block;
    margin: 30px auto;
    max-width: 450px;
}

.flow-title {
    text-align: center;
    font-size: 22px;
    margin: 30px 0 10px;
}

.small-heading {
    font-size: 18px;
    font-weight: bold;
    margin: 25px 0 10px;
}

.download-title {
    margin-top: 20px;
    font-weight: bold;
}

.download-list {
    margin-left: 20px;
}

/*cataact SECTION */
.cataract-page {
    width: 95%;
    max-width: 1100px;
    margin: auto;
    color: #000;
    line-height: 1.7;
    font-size: 15px;
}

.cat-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cat-sub-title {
    font-size: 14px;
    font-weight: 700;
    color: #0a1a3c;
    margin-bottom: 20px;
}

.cat-small-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blue-box {
    background: #e8f1ff;
    padding: 15px;
    border-left: 3px solid #0a1a3c;
    margin-bottom: 25px;
    font-size: 14px;
}

.section-title {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 700;
    color: #0a1a3c;
}

.blue-bullets li {
    margin-bottom: 8px;
}

.img-placeholder {
    width: 100%;
    height: 180px;
    background: #eaeaea;
    border: 1px solid #ccc;
    margin: 20px 0;
}

.img-row {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}

.img-row .img-placeholder {
    flex: 1;
}

/*same size photo and text*/
.phaco-section {
    padding: 40px 0;
}

.phaco-row {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* LEFT TEXT */
.phaco-left {
    flex: 1;
}

.phaco-left h3 {
    font-size: 22px;
    color: #0a1a3c;
    margin-bottom: 15px;
}

/* RIGHT IMAGE */
.phaco-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phaco-right img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #eee; /* acts like placeholder */
}
/*glaucoma clinic*/
.inner-page {
    width: 85%;
    margin: auto;
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #333;
}

.page-title {
    font-size: 26px;
    text-transform: uppercase;
    color: #0a1a3d;
    margin-top: 20px;
    text-align: left;
    margin-bottom: 15px;
}

.intro-text {
    font-size: 15px;
    margin-bottom: 25px;
}

.highlight-box {
    background: #f4f9ff;
    border: 1px solid #c6e2ff;
    padding: 15px;
    margin: 25px 0;
    border-radius: 4px;
    font-size: 14px;
}

.image-center {
    text-align: center;
    margin: 25px 0;
}

.image-center img {
    width: 350px;
    height: auto;
    object-fit: contain;
    background: #eaeaea;
    border: 1px solid #ccc;
}

.section-title {
    font-size: 20px;
    margin: 35px 0 15px;
    color: #0a1a3d;
    text-transform: uppercase;
}

.sub-heading {
    font-size: 17px;
    margin-top: 25px;
    font-weight: bold;
    color: #0a1a3d;
    text-transform: uppercase;
}

ul {
    padding-left: 18px;
    margin-bottom: 20px;
}

.diagnostic-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 35px;
}

.diagnostic-table td {
    border: 1px solid #ccc;
    padding: 12px;
    vertical-align: top;
    background: #fafafa;
}

/* Dark Transparent Background */
.leaflet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(2px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Image container */
.leaflet-popup {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
}

/* Image auto-fitting like Google viewer */
.leaflet-image {
    max-width: 95vw;
    max-height: 95vh;
    height: auto;
    width: auto;
    display: block;
    border-radius: 4px;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
    line-height: 1.6;
}

.page-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

h2 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 10px;
}

h3 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.section-image {
    text-align: center;
    margin: 40px 0;
}

.section-image img {
    max-width: 100%;
    height: auto;
}

.download-list li {
    margin-bottom: 8px;
}

.download-list a {
    color: #0056d6;
    text-decoration: none;
    font-weight: bold;
}

.download-list a:hover {
    text-decoration: underline;
}


/* LEAFLET POPUP */
.leaflet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(2px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.leaflet-popup {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
}

.leaflet-image {
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    border-radius: 4px;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

  .technology-section {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 50px 0;
}

.technology-section h2 {
    text-align: center;
    color: #1a1a80;
    font-size: 22px;
    margin-bottom: 50px;
}

/* MAIN ROW (IMAGE + TEXT) */
.tech-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

/* IMAGE BOX FIX */
.tech-image {
    flex: 1;
    height: 180px;              /* FIXED height so all images match */
    display: flex;
    justify-content: center;    /* center image horizontally */
    align-items: center;        /* center image vertically */
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 10px;
}

.tech-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* TEXT SECTION */
.tech-content {
    flex: 2;
}

.tech-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0a1a3c;
    font-weight: bold;
}

.tech-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* REVERSE ROW */
.tech-item.reverse {
    flex-direction: row-reverse;
}

/* MOBILE FIX */
@media(max-width: 768px) {
    .tech-item,
    .tech-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .tech-image {
        width: 100%;
    }
}
/* PAGE TITLE */
.page-title {
    text-align: center;
    font-size: 30px;
    margin: 20px 0 25px 0;   /* reduced spacing */
    font-weight: bold;
}

/* SECTION WRAPPER (smaller padding) */
.cat-section {
    padding: 25px 0;        /* earlier 50px */
    width: 90%;
    margin: auto;
}

/* Ensure no section shows wide spacing */
.cat-section p {
    margin-bottom: 12px;    /* reduce paragraph gap */
}

/* TITLES */
.section-title {
    text-align: center;
    font-size: 22px;         /* smaller title */
    margin-bottom: 20px;     /* less space */
    color: #003e7e;
    font-weight: bold;
}

/* TWO COLUMN LAYOUT */
.two-col {
    display: flex;
    gap: 20px;               /* reduced gap */
    flex-wrap: wrap;
}

.two-col .text {
    flex: 1 1 60%;
}

.two-col .image {
    flex: 1 1 35%;
}

.two-col img {
    width: 100%;
    border-radius: 6px;
    margin: 0;               /* no image spacing */
}

/* TEXT ONLY SECTION */
.text-only {
    width: 90%;
    margin: auto;
}

/* THREE COLUMNS (Monofocal lenses) */
.three-col {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;               /* reduced space */
    justify-content: center;
}

.mono-box {
    flex: 1 1 28%;
    text-align: center;
    padding: 10px 0;         /* reduced padding */
}

.mono-box img {
    width: 100px;            /* smaller */
    margin-top: 5px;
}

/* --- LASIK PAGE CLEAN LAYOUT --- */

.lasik-section {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    line-height: 1.7;
    color: #333;
}

.lasik-section h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.lasik-text {
    font-size: 15px;
    margin-bottom: 25px;
}

.lasik-img-right,
.lasik-img-left,
.lasik-img-center {
    margin: 20px 0;
}

.lasik-img-right img {
    float: right;
    width: 320px;
    margin-left: 20px;
}

.lasik-img-left img {
    float: left;
    width: 320px;
    margin-right: 20px;
}

.lasik-img-center img {
    display: block;
    margin: 0 auto;
    width: 300px;
}
.lasik-img-right img {
    float: right;
    width: 300px;
    margin-left: 20px;
}

.lasik-text {
    width: calc(100% - 340px); /* space for image */
    float: left;
}

/* Clear floats after each block */
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.lasik-list {
    margin-left: 20px;
    margin-bottom: 20px;
}


/*footer*/
/* Footer Base */
.site-footer {
    background: #0a1a3d;
    color: #fff;
    padding: 35px 0 5px 0;     /* further reduced top & bottom */
    font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;                 /* reduced column spacing */
}

/* Columns */
.footer-column {
    flex: 1 1 250px;
}

.footer-column h3 {
    font-size: 28px;
    margin-bottom: 12px;       /* smaller spacing */
    font-weight: bold;
    color: #fff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 7px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 17px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

/* Text inside contact */
.footer-column p {
    font-size: 17px;
    color: #ccc;
    line-height: 1.45;
}

/* Footer Bottom - Copyright + Powered On One Line */
.footer-bottom {
    margin-top: 0;
    padding: 5px 0;
    text-align: center;
    color: #bbb;
    font-size: 18px;

    display: flex;                 /* Combine both into one line */
    justify-content: center;
    gap: 10px;                     /* small space between text */
    flex-wrap: wrap;
}

.footer-bottom span {
    display: inline-block;
}

.footer-bottom a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #1e90ff;
}

/* Container Alignment */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
img {
    display: block;
    margin: 0 auto;
}

.image-wrapper {
    text-align: center;
}
.kerato-page {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 40px 0;
  line-height: 1.7;
  color: #333;
}

.page-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}

.center-image-section {
    width: 100%;
    text-align: center;      /* Centers the image horizontally */
    margin: 40px 0;          /* Space above and below (adjust if needed) */
}

.center-image-section img {
    max-width: 100%;         /* Image scales properly */
    height: auto;            /* Maintains aspect ratio */
    display: inline-block;   /* Ensures perfect centering */
}


.download-text {
  text-align: center;
  margin: 20px 0;
  font-size: 13px;
  color: #444;
}

.para {
  margin-bottom: 25px;
  font-size: 15px;
  color: #444;
}

.two-col {
  display: flex;
  gap: 40px;
  margin: 40px 0;
}

.two-col .col {
  flex: 1;
}

.two-col h3 {
  margin-bottom: 15px;
  color: #0a1a3d;
}

.section-title {
  font-size: 22px;
  font-weight: bold;
  margin-top: 40px;
}

.sub-title {
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0 10px;
}
