:root {
    /* Theme Colors: Red and Black as requested */
    --primary-color: #D32F2F;
    /* A professional deep red */
    --secondary-color: #1a1a1a;
    /* Dark black/gray */
    --accent-color: #f4f4f4;
    /* Light gray for backgrounds */
    --text-color: #333333;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    font-weight: bold;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    /*list-style: none;*/
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff180a;
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

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

.logo h2 {
    margin-bottom: 0;
    color: var(--white);
    font-size: 1.5rem;
}

.logo span {
    color: var(--primary-color);
}

.logo a img {
    height: 60px;
    width: 200px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* --- Hero Section --- */
.hero {
    /* Generic lab background image */
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- About Section --- */
.about-section {
    padding-top: 50px;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 25%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
}

.about-card {
    background-color: var(--accent-color);
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* --- Features & USPs --- */
.features-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--white);
}

.features-section .section-header h2 {
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    background-color: #333;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.progress-bar-container {
    margin-top: 20px;
    text-align: left;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.progress-track {
    background-color: #444;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    background-color: var(--primary-color);
    height: 100%;
}

/* --- Technical Specs --- */
.specs-section {
    padding: 80px 0;
    background-color: var(--accent-color);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.spec-card {
    background-color: var(--white);
    padding: 20px;
    border-bottom: 3px solid transparent;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-left: 5px solid var(--primary-color);
}

.spec-card:hover {
    /* border-bottom: 3px solid var(--primary-color); */
    transform: translateY(-3px);
}

.spec-label {
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
    /* border-left: 5px solid var(--primary-color); */
}

.spec-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary-color);
}

/* --- Applications Section --- */
.applications-section {
    padding: 80px 0;
    background-color: var(--white);
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.app-item {
    position: relative;
    padding-left: 20px;
}

.app-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 20px;
    width: 3px;
    background-color: var(--primary-color);
}

.app-item h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.app-item p {
    font-size: 0.95rem;
    color: #666;
}

/* --- Clients Section --- */
.clients-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.client-box {
    background: var(--white);
    padding: 20px 40px;
    border: 1px solid #eee;
    border-radius: 4px;
    min-width: 200px;
}

.client-box h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.client-box span {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

/* --- Footer --- */
footer {
    background-color: var(--secondary-color);
    color: #ccc;
    padding: 60px 0 20px;
}

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

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

.footer-col p,
.footer-col li {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-col i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
}

.contact-card {
    background-color: #222;
    padding: 20px;
    border-radius: 5px;
}

/* --- NEW: Why Choose Us (Side-by-Side Design) --- */
.why-section {
    display: flex;
    flex-wrap: wrap;
    background-color: #111;
    /* Deep Black */
    color: var(--white);
    overflow: hidden;
}

.why-image-col {
    flex: 1;
    min-width: 400px;
    background: url('https://images.unsplash.com/photo-1579154204601-01588f351e67?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') no-repeat center center/cover;
    position: relative;
    min-height: 500px;
}

/* Red Overlay on the image for branding */
.why-image-col::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), #111);
}

.why-content-col {
    flex: 1;
    padding: 80px 60px;
    min-width: 400px;
}

.why-content-col h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-list-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.why-icon-box {
    background-color: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.4);
}

.why-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--white);
}

.why-text p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- FIXED: FAQ Section --- */
.faq-section {
    padding: 100px 0;
    background-color: #f4f4f4;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-question:hover {
    background-color: #fff5f5;
    /* Light red tint */
    color: var(--primary-color);
}

.faq-question.active {
    background-color: var(--white);
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
}

.faq-question i {
    transition: transform 0.4s ease;
    color: #ccc;
}

.faq-question.active i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    /* Hidden by default */
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: var(--white);
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile adjust for new section */
@media (max-width: 768px) {
    .why-section {
        flex-direction: column;
    }

    .why-image-col {
        min-height: 300px;
    }

    .why-content-col {
        padding: 40px 20px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .nav-links {
        display: none;
        /* Ideally replaced by a mobile burger menu script */
    }
}

/* --- Client Grid Styling --- */
.clients-section {
    background-color: var(--white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.client-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.client-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    opacity: 0.8;
}

.client-info h4 {
    margin: 0 0 15px 0;
    color: var(--dark-color);
    font-size: 1.1rem;
    line-height: 1.4;
}

.location-badge {
    display: inline-block;
    background: var(--light-bg);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}


/* --- Corporate Intro Section (Section One) --- */
.corp-intro-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
    font-family: 'Segoe UI', sans-serif;
    /* Ensuring font consistency */
}

.corp-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Left side is slightly wider */
    gap: 60px;
    align-items: start;
}

/* --- Left Column Styles --- */
.corp-label {
    color: var(--primary-color);
    /* Uses your blue color */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.corp-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 800;
}

.corp-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.corp-lead {
    font-size: 1.15rem !important;
    color: #334155 !important;
}

/* Badges */
.corp-badges {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.iso-badge {
    background: #ff180a;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid #ff180a;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Right Column: Feature Box --- */
.corp-feature-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    position: relative;
    top: 10px;
}

.feature-box-header {
    background: red;
    color: #ffffff;
    padding: 30px;
}

.feature-box-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #fff;
}

.feature-box-header p {
    margin: 5px 0 0 0;
    opacity: 0.8;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.feature-box-body {
    padding: 30px;
}

.corp-highlight-text {
    background: #f8fafc;
    padding: 15px;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 4px 4px 0;
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 25px;
}

/* Icon List */
.corp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.corp-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    color: #475569;
    font-weight: 500;
}

.corp-list li:last-child {
    margin-bottom: 0;
}

.corp-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .corp-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .corp-title {
        font-size: 2rem;
    }

    .corp-badges {
        flex-wrap: wrap;
    }
}


/* --- Header Basics (Desktop) --- */
header {
    background-color: #ffffff;
    color: black;
    padding: 15px 0;
    /* Reduced slightly for sleeker look */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* Needed for mobile dropdown positioning */
}

/* Nav Links Container */
.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: black;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.quotebtn {
    color: #ffffff !important;
}

.quotebtn:hover {
    color: #ff180a !important;
}

/* Hamburger Menu (Hidden on Desktop) */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 35px;
    height: 4px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #ff180a;
}


@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: #000000 !important;
        color: #fff !important;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding-bottom: 20px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        margin: 16px 0;
        display: block;
        font-size: 1.1rem;
        color: #fff !important;
    }

    .nav-links .btn {
        margin-top: 10px;
        display: inline-block;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Product Showcase (Light Theme) --- */
.showcase-section-light {
    padding: 80px 0;
    background-color: #f9f9f9;
    /* Very light grey to distinguish from white sections */
    position: relative;
    overflow: hidden;
}

/* Header line adjustment */
.showcase-section-light .header-line {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto;
    border-radius: 2px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

/* --- Left Column: Image --- */
.image-wrapper-light {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    padding: 10px;
    /* Creates a white frame */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    border: 1px solid #eee;
}

.image-wrapper-light img {
    width: 100%;
    height: 450px;
    display: block;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.image-wrapper-light:hover img {
    transform: scale(1.02);
}

.light-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--white);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Right Column: Features --- */
.feature-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.feature-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #e0e0e0;
}

.icon-box {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #ffebee;
    /* Very light red bg */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
}

.text-box h3 {
    margin: 0 0 5px 0;
    font-size: 1.15rem;
    color: var(--secondary-color);
    /* Dark Black */
    font-weight: 700;
}

.text-box p {
    margin: 0;
    color: #555;
    /* Dark Grey text */
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Action Buttons */
.showcase-actions {
    margin-top: 30px;
}

/* Dark Outline Button for Light Theme */
.btn-outline-dark {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-dark:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-wrapper-light {
        max-width: 500px;
        margin: 0 auto;
    }

    .showcase-actions {
        text-align: center;
    }
}

@media (max-width: 480px) {

    .showcase-actions .btn,
    .showcase-actions .btn-outline-dark {
        display: block;
        width: 100%;
        margin-left: 0 !important;
        margin-bottom: 10px;
        text-align: center;
    }
}

.footer-col img {
    height: 65px;
    width: 210px;
    border-radius: 5px;
    margin-bottom: 5px;
}

/* --- FAQ Layout Fixes --- */
.faq-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    /* Space between FAQ and Form */
    align-items: flex-start;
}

.faq7 {
    flex: 1.4;
    /* Takes up about 60% of width */
    min-width: 300px;
}

.contactform5 {
    flex: 1;
    /* Takes up about 40% of width */
    min-width: 300px;
}

/* --- Contact Form Card Styling --- */
.contact-form-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Soft shadow to pop out */
    border-top: 5px solid var(--primary-color);
    /* Red accent on top */
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.form-header p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

/* --- Form Fields --- */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #fcfcfc;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 5px rgba(211, 47, 47, 0.2);
}

textarea.form-control {
    resize: vertical;
    /* Allow user to resize height only */
}

/* Full width button for form */
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .faq-row {
        flex-direction: column;
        gap: 50px;
    }

    .col-md-7,
    .col-md-5 {
        flex: auto;
        width: 100%;
    }
}

/* =========================================
   NEW: INNER PAGE BANNER & CONTACT STYLES
   ========================================= */

/* --- Page Banner (Scientific Theme) --- */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1581093588401-fbb62a02f120?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 40vh;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    border-bottom: 5px solid var(--primary-color);
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* --- Breadcrumbs --- */
.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.breadcrumb li {
    color: #ccc;
}

.breadcrumb li a {
    color: var(--white);
    transition: var(--transition);
}

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

.breadcrumb li + li::before {
    content: "/";
    padding: 0 10px;
    color: var(--primary-color);
}

/* --- Contact Page Layout --- */
.contact-page-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal split */
    gap: 50px;
    align-items: start;
}

/* Contact Details Box (Left Side) */
.contact-details-wrapper h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.contact-details-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.contact-details-wrapper p.lead-text {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 30px;
    margin-top: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.contact-info-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #ffebee;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.contact-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

/* Map Styling */
.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .page-header h1 {
        font-size: 2.2rem;
    }
}

/* =========================================
   PRIVACY POLICY & TEXT PAGE STYLES
   ========================================= */
.policy-section {
    padding: 80px 0;
    background-color: var(--white);
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto; /* Centers the text content */
}

.last-updated {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.policy-wrapper h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.policy-wrapper p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-wrapper ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.policy-wrapper li {
    margin-bottom: 10px;
}

.policy-wrapper a {
    color: var(--primary-color);
    font-weight: 600;
}