/* --- 1. VARIABLE DECLARATION (Color & Typography) --- */
:root {
    --color-gold: #D4AF37;       /* Gold Accent */
    --color-teal: #009688;       /* Teal Blue */
    --color-navy: #0A3D62;       /* Navy Blue */
    --color-white: #FAFAFA;      /* Warm White (Background) */
    --color-charcoal: #2C3A47;   /* Body Text */
}

/* ---BASE & UTILITY STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    line-height: 1.6;
}

.container {
    width: 90%;
    /*max-width: 1200px;*/
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--color-navy);
}

.playfair-title {
    font-size: 3em;
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.teal-heading { color: var(--color-teal); }
.white-heading { color: var(--color-white); }
.gold-text { color: var(--color-gold); }
.white-text { color: var(--color-white); }
.text-wide { max-width: 800px; margin: 0 auto 30px; text-align: center; }

/* Buttons */
.cta-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px; /* Subtle rounding */
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    border: none;
}
.primary-cta {
    background-color: var(--color-gold);
    color: var(--color-navy);
}
.primary-cta:hover {
    background-color: var(--color-teal);
    color: var(--color-white);
}
.white-bg-cta {
    background-color: var(--color-white);
    color: var(--color-navy);
    border: 2px solid var(--color-gold);
}
.white-bg-cta:hover {
    background-color: var(--color-gold);
}

/* ---NAVIGATION --- */
.navbar {
    background-color: var(--color-navy);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;

    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
}
.nav-content {
    display: flex;
    justify-content:space-between;
    align-items: center;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5em;
    color: var(--color-gold);
    text-decoration: none;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.logo p {
    margin-top: 5px;
    font-size: 20px;
}

.logo img {
    height: 90px;
    width: 100px;
    border-radius: 50%;
    box-shadow:
        0 0 8px rgba(255, 255, 255, 0.6),
        0 0 16px rgba(255, 255, 255, 0.6),
        0 0 32px rgba(255, 255, 255, 0.4);
}


.nav-links {
    list-style: none;
    display: flex;
}
.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s;
}
.nav-links a:hover, .gold-accent-link {
    color: var(--color-gold);
}
.cta-nav-link {
    background-color: var(--color-teal);
    color: var(--color-white) !important;
    border-radius: 5px;
    margin-left: 15px;
}
.cta-nav-link:hover {
    background-color: var(--color-gold);
}
.menu-toggle {
    display: none; /* Hide on desktop */
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5em;
    cursor: pointer;
}


/* ---HERO SECTION --- */
.hero-section {
    background: linear-gradient(rgba(0, 150, 136, 0.4), rgba(10, 61, 98, 0.6)), url('./images/istockphoto-637912692-612x612.jpg') center/cover; /* Placeholder for image */
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
}
.hero-content h1, .hero-content p {
    color: var(--color-white);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}


/* ---ABOUT SUMMARY (M/V/CEO) --- */
.mv-ceo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
.ceo-message-card {
    background-color: #e6f7f5;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}
.ceo-photo-placeholder {
    width: 200px;
    height: 200px;
    background-color: var(--color-teal);
    border: 3px solid var(--color-gold);
    border-radius: 50%;
    margin: 0 auto 15px;
}
.ceo-quote {
    font-style: italic;
    color: var(--color-navy);
    margin: 0 0 10px;
    border-left: 3px solid var(--color-gold);
    padding-left: 10px;
}
.mission-vision-card {
    background-color: var(--color-white);
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
}
.gold-divider {
    border: 0;
    height: 1px;
    background-color: var(--color-gold);
    margin: 20px 0;
}


/* ---SERVICES SNAPSHOT (What We Do) --- */
.navy-bg-section {
    background-color: var(--color-navy);
}
.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.role-card {
    background-color: var(--color-white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 150, 136, 0.2);
}
.role-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}


/* ---PARTNERS & SUCCESS STORIES --- */

.logo-slider {
    /* Flexible layout for horizontal scrolling/wrapping of all 8 cards */
    display: flex; 
    gap: 30px;
    padding: 30px 0;
    overflow-x: auto; /* Allows horizontal scrolling if items exceed width (Mobile Slider Effect) */
    -webkit-overflow-scrolling: touch; 
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 60px;
    flex-wrap: nowrap; /* Ensures items stay in a line for the slider effect */
}

.partner-logo-box {
    min-width: 220px; 
    flex-shrink: 0;
    text-align: center;
    padding: 20px 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: default;
}

.partner-logo-box:hover {
    border-color: var(--color-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.partner-logo-img {
    max-width: 100px; 
    max-height: 1000px;
    height: auto;
    width: auto;
    display: block;
    margin: 0 auto 10px;
    object-fit: contain;
    border: 1px solid #f0f0f0; 
    padding: 5px;
    border-radius: 4px;
    /* Optional: Desaturate/Gray out images initially for the "opacity 0.5" feel */
    filter: grayscale(80%); 
    transition: filter 0.3s;
}

.partner-logo-box:hover .partner-logo-img {
    filter: grayscale(0%);
}

.partner-logo-box h3 {
    font-size: 1.1em;
    color: var(--color-navy);
    margin: 5px 0 5px;
}

.partner-caption {
    font-size: 0.85em;
    color: var(--color-charcoal);
    opacity: 0.8;
}

/* --- SUCCESS STORIES GRID --- */
.success-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.success-card {
    padding: 25px;
    border-radius: 8px;
    background-color: #f7fcfc;
    border-left: 5px solid var(--color-teal);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 600px) {
    .success-grid {
        grid-template-columns: 1fr;
    }
}


/* ---FOOTER --- */
.footer {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
    margin-top: 20px;
}
.footer a {
    color: var(--color-gold);
    text-decoration: none;
    margin: 0 5px;
}
.footer a:hover {
    text-decoration: underline;
}

/* ---RESPONSIVENESS (Mobile First) --- */
@media (max-width: 900px) {
    .playfair-title {
        font-size: 2.2em;
    }
    .mv-ceo-grid {
        grid-template-columns: 1fr;
    }
    .success-grid {
        grid-template-columns: 1fr;
    }
    .roles-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: inline-block;
    }

    .menu-toggle.close {
        display: none;
    }

    .menu-toggle.close:hover {
        color: red;
    }

    .menu-toggle.open:hover {
        color: green;
    }

    .nav-links li {
        padding: 10px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .cta-nav-link {
        margin: 10px auto;
    }
}





/* --- ABOUT US STYLES --- */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
    margin-top: 30px;
}

.value-card {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--color-white);
    border-top: 5px solid var(--color-teal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.1);
}

.value-icon {
    font-size: 2em;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.value-title {
    font-family: 'Playfair Display', serif;
    color: var(--color-navy);
    font-size: 1.5em;
    margin-top: 0;
}

/* Presence Map Section */
.presence-map-section {
    background-color: #f4fbf9;
    padding: 80px 0;
    text-align: center;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background-color: #e0f2f1;
    border: 1px solid var(--color-teal);
    border-radius: 10px;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    color: var(--color-navy);
    padding: 20px;
}

main{
    margin-top: 120px;
}

.map-placeholder img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    width: 100%;
    height: 100%;
}





/* ---SERVICES PAGE STYLES --- */

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px;
    margin-top: 50px;
}

.pillar-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid var(--color-gold);
}

.pillar-card:hover {
    transform: translateY(-5px); /* Lift slightly on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pillar-icon {
    font-size: 3em;
    color: var(--color-teal);
    margin-bottom: 10px;
}

.pillar-title {
    font-family: 'Playfair Display', serif;
    color: var(--color-navy);
    font-size: 1.4em;
    margin-top: 0;
}


/* ---INDUSTRIES WE SERVE GRID --- */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.industry-card {
    text-align: center;
    background-color: var(--color-white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 250px; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.industry-icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 10px;
}

.industry-title {
    font-size: 1.25em;
    font-weight: 700;
    color: var(--color-navy);
    margin-top: 0;
    margin-bottom: 10px;
}

.industry-description {
    font-size: 0.9em;
    color: var(--color-charcoal);
    line-height: 1.4;
}

.cta-bottom {
    text-align: center;
    margin-top: 60px;
}




.imagebg {
    background: url("./images/services.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    position: relative; /* Needed for ::before positioning */
    overflow: hidden;   /* Ensures overlay doesn't spill out */
}

/* The dark + blurred overlay */
.imagebg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.imagebg * {
    z-index: 1;
}

.imagebg h2, .imagebg h1 {
    color: var(--color-white);
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 600px) {
    .industries-grid {
        grid-template-columns: 1fr; /* 1 column on phones */
    }
}






/*---PORTFOLIO PAGE STYLES --- */

.filter-buttons-container {
    margin: 40px auto 60px;
    max-width: 900px;
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap on mobile */
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    background-color: #f0f0f0;
    color: var(--color-navy);
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: var(--color-teal);
    color: var(--color-white);
}

.filter-btn.active-filter {
    background-color: var(--color-gold);
    color: var(--color-navy);
    border-color: var(--color-gold);
    font-weight: 700;
}

/* --- PORTFOLIO GRID --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.portfolio-card {
    border-radius: 8px;
    overflow: hidden; /* Contains the image */
    background-color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-img-placeholder {
    width: 100%;
    height: 200px; 
    background-color: #e0f2f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal);
    font-weight: 600;
}

.card-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.project-tag {
    display: inline-block;
    font-size: 0.75em;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    color: var(--color-white);
}
.teal-bg {
    background-color: var(--color-teal);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4em;
    color: var(--color-navy);
    margin: 5px 0 10px;
}

.card-description {
    font-size: 0.95em;
    color: var(--color-charcoal);
    margin-bottom: 15px;
}

.read-more {
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--color-teal) !important;
}






/* ---PARTNERS PAGE SPECIFIC STYLES --- */

.partner-category-group {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
    height: 100%;
}


.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; 
    gap: 20px;
    margin-top: 30px;
    align-items: center;
    justify-items: center;
    width: 100%;
    height: 100%;
}

.imagebg2 {
    background: url("./images/partner.jpeg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

@media (max-width: 992px) {
    /* Tablet/Medium screens: Switch to 3 columns */
    .partner-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}
@media (max-width: 600px) {
    /* Mobile/Small screens: Switch to 2 columns */
    .partner-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}


/* --- Partner Card Styling --- */
.partner-card {
    text-align: center;
    background-color: var(--color-white);
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-height: 140px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid #ddd; 
}

.partner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
}


/* --- Branded Border Classes --- */
.teal-border {
    border-color: var(--color-teal);
}
.teal-border:hover {
    box-shadow: 0 0 10px rgba(0, 150, 136, 0.4); 
}

.gold-border {
    border-color: var(--color-gold);
}
.gold-border:hover {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4); 
}


.partner-logo-placeholder {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    background-color: transparent; 
}

.partner-logo-placeholder img {
    object-fit: contain;
    filter: grayscale(100%); 
    transition: filter 0.3s ease; 
}

.partner-card:hover .partner-logo-placeholder img {
    filter: grayscale(0%); 
}

.partner-name {
    font-size: 0.95em;
    font-weight: 600;
    color: var(--color-navy);
    margin: 0;
}

.partner-caption {
    font-size: 0.8em;
    color: var(--color-teal);
    margin-top: 5px;
    font-weight: 400;
}





/* ---MEET OUR TEAM PAGE STYLES--- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member-card {
    text-align: center;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid var(--color-gold);
}

.team-member-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.2); 
}

.member-photo {
    width: 200px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: 2px solid var(--color-teal); 
}

.member-content {
    padding: 20px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.member-name {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0 0 5px;
}

.member-title {
    font-size: 1em;
    font-style: italic;
    margin-bottom: 10px;
}

.member-bio {
    font-size: 0.9em;
    color: var(--color-charcoal);
    margin-bottom: 15px;
}

.linkedin-link {
    display: inline-block;
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    border: 1px solid var(--color-gold);
    padding: 5px 10px;
    border-radius: 4px;
}
.linkedin-link:hover {
    color: var(--color-white);
    background-color: var(--color-teal);
    border-color: var(--color-teal);
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}





/* --- 12. CONTACT US PAGE STYLES --- */
.contact-layout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; 
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-container {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 5px;
    font-size: 0.95em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--color-teal);
    outline: none;
    box-shadow: 0 0 5px rgba(0, 150, 136, 0.2);
}

.contact-form textarea {
    resize: vertical;
}

.contact-details-container {
    padding-top: 15px;
}

.contact-details-container h3 {
    margin-bottom: 30px;
}

.contact-info-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-block i {
    font-size: 2em;
    margin-right: 20px;
    width: 30px;
    flex-shrink: 0;
}

.contact-info-block h4 {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0;
}

.contact-info-block p {
    margin: 3px 0;
    font-size: 0.95em;
    line-height: 1.4;
}

.map-container {
    margin-top: 30px;
}

.contact-info-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 28px;
    height: 28px;
    margin-right: 20px;
    flex-shrink: 0;
    color: var(--color-teal);
    stroke: var(--color-teal);
}

.contact-info-block h4 {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0;
}

.contact-info-block p {
    margin: 3px 0;
    font-size: 0.95em;
    line-height: 1.4;
}

.contact-details-container a{
    list-style: none;
    text-decoration: none;
    display: inline-block;
}

.contact-details-container a:hover{
    scale: (2);
    transform: 0.3s ease;
}


@media (max-width: 992px) {
    .contact-layout-grid {
        grid-template-columns: 1fr; 
        gap: 40px;
    }
}

iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}







/* ---PRIVACY POLICY PAGE STYLES --- */

.policy-content {
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h3 {
    /* Main section headings */
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--color-teal);
    color: var(--color-gold); 
}

.policy-content p {
    margin-bottom: 15px;
    color: var(--color-white);
}

.policy-content ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 15px;
    margin-bottom: 30px;
}

.policy-content ul li {
    margin-bottom: 10px;
    color: var(--color-white);
}

.policy-content ul li strong {
    color: var(--color-gold); /* Highlight key terms */
}

.policy-content a {
    color: var(--color-teal); /* Ensure links are highlighted */
    text-decoration: underline;
}

.policy-content .contact-details-box {
    margin-top: 20px;
    padding: 15px;
    border: 1px dashed var(--color-teal);
    border-radius: 5px;
    display: inline-block;
}