/* Virtual CLO Website - Brand Colors */
:root {
    --primary-color: #6d1f2f;        /* Primary brand burgundy */
    --secondary-color: #6b6b6b;      /* Secondary neutral gray */
    --dark-color: #3F3F3F;           /* Dark gray accent */
    --light-color: #F5F1F0;          /* Light background accent */
    --accent-color: #E8B4CC;         /* Soft complementary accent */
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #E0E0E0;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand img {
    max-height: 90px;
    width: auto;
    display: block;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 10px;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 18px;
    height: 2px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
}

.nav-toggle span::before {
    top: -6px;
}

.nav-toggle span::after {
    top: 6px;
}

.nav-toggle.open span {
    background: transparent;
}

.nav-toggle.open span::before {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span::after {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.15), transparent 32%),
                linear-gradient(135deg, rgba(109, 31, 47, 0.96), rgba(88, 61, 79, 0.96));
    color: white;
    padding: 100px 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    right: -160px;
    top: -120px;
    background: rgba(255, 255, 255, 0.08);
}

.hero::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    left: -140px;
    bottom: -90px;
    background: rgba(255, 255, 255, 0.07);
}

.hero-content {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    max-width: fit-content;
    color: white;
}

.hero-content h1 {
    color: white;
    font-size: clamp(3rem, 5vw, 4.2rem);
    line-height: 1.02;
    margin-bottom: 0.75rem;
}

.hero-copy {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.08rem;
    max-width: 720px;
    line-height: 1.85;
    margin-bottom: 1.75rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 190px;
}

@media (max-width: 767px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--dark-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 58, 86, 0.3);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--light-color);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    align-items: stretch;
}

.card {
    background: white;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    padding: 2.2rem;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.06);
    min-height: 220px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

.card:hover {
    box-shadow: 0 30px 60px rgba(109, 31, 47, 0.18);
    transform: translateY(-8px);
    border-color: rgba(109, 31, 47, 0.35);
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.45rem;
}

.card p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.96rem;
    line-height: 1.8;
}

.why-section .cards-grid .card {
    position: relative;
}

body.js .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

body.js .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-section .section-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
}



@media (min-width: 992px) {
    .why-section .cards-grid {
        grid-template-columns: repeat(3, minmax(280px, 1fr));
    }

    .why-section .cards-grid .card:nth-child(4) {
        grid-column: 2 / 3;
        max-width: none;
        justify-self: stretch;
        margin: 0;
    }
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.card p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* Why Section */
.why-section {
    background-color: var(--light-color);
    padding-top: 80px;
    padding-bottom: 80px;
}

.why-section h2 {
    margin-bottom: 0.5rem;
}

/* Featured Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(139, 58, 86, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Featured Services Section Background */
.featured-services {
    background-color: white;
}

/* Remove old duplicate hero rules */

.image-showcase {
    padding: 80px 0;
    background: #f8f2f4;
}

.image-showcase h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.image-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.image-card img {
    width: 100%;
    display: block;
}

.image-card h3 {
    font-size: 1.35rem;
    margin: 1.5rem 1.5rem 0.75rem;
}

.image-card p {
    margin: 0 1.5rem 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.process-section {
    background-color: #ffffff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.process-step {
    background: linear-gradient(180deg, rgba(109, 31, 47, 0.06), white);
    border: 1px solid rgba(109, 31, 47, 0.12);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: "";
    position: absolute;
    right: -20px;
    top: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(109, 31, 47, 0.06);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--text-dark);
    line-height: 1.8;
}

.outcomes-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f2f4 100%);
    padding-top: 80px;
    padding-bottom: 80px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.outcome-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(109, 31, 47, 0.12);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.outcome-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(109, 31, 47, 0.08);
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.outcome-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.outcome-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-section .btn-secondary {
    background-color: white;
    color: var(--primary-color);
    margin: 0 auto;
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(180deg, rgba(35, 13, 24, 0.98) 0%, rgba(19, 8, 13, 1) 100%);
    color: white;
    padding: 55px 0 30px;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    top: -120px;
    right: -120px;
    background: rgba(255, 255, 255, 0.06);
}

.footer::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    bottom: -90px;
    left: -90px;
    background: rgba(255, 255, 255, 0.04);
}

.footer-content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-bottom: 2.25rem;
}

.footer-section {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.8rem;
    border-radius: 18px;
    min-height: 175px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.14);
}

.footer-section h4 {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.footer-section p,
.footer-section a,
.footer-section ul li {
    color: rgba(255, 255, 255, 0.78);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.8;
}

.footer-section ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 1.1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-section a:hover {
    color: #f7d2dc;
    transform: translateX(2px);
}

.footer-bottom {
    position: relative;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

/* Full-width section backgrounds */
section:nth-child(even) {
    background-color: #f9f9f9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 18px;
    }

    .navbar .container {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0.75rem 18px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    .nav-menu a {
        padding: 0.5rem 0.75rem;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(2.8rem, 5vw, 3.6rem);
    }

    .hero-copy {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: flex-start;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        min-width: 165px;
    }

    .image-grid,
    .cards-grid,
    .services-grid,
    .process-cards,
    .outcomes-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .why-section .cards-grid .card:nth-child(4) {
        grid-column: auto;
        max-width: none;
        justify-self: stretch;
        margin: 0;
    }

    .service-item,
    .image-card,
    .process-step,
    .outcome-card,
    .card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .section-intro,
    .process-step p,
    .outcome-card p,
    .card p {
        font-size: 1rem;
    }

    section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.75rem;
        background: white;
        padding: 1rem 0 1.5rem;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 0.85rem 0;
        font-size: 1rem;
    }

    .navbar .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }

    .hero {
        padding: 70px 0 50px;
    }

    .hero-content {
        gap: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .hero-copy {
        font-size: 1.02rem;
        max-width: 100%;
        line-height: 1.9;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
    }

    .hero-buttons .btn {
        min-width: auto;
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .btn {
        width: 100%;
    }

    .image-card,
    .service-item,
    .process-step,
    .outcome-card,
    .card {
        padding: 1.6rem;
        border-radius: 20px;
    }

    .image-grid,
    .cards-grid,
    .services-grid,
    .process-cards,
    .outcomes-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .service-item h3,
    .card h3,
    .outcome-card h3,
    .process-step h3 {
        font-size: 1.25rem;
    }

    .service-item p,
    .card p,
    .outcome-card p,
    .process-step p,
    .section-intro {
        font-size: 1rem;
        line-height: 1.9;
    }

    section h2 {
        font-size: 2rem;
    }

    .footer {
        padding: 30px 0 20px;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .engagement-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .engagement-card {
        width: 100%;
        max-width: 520px;
    }
}

@media (max-width: 1024px) {
    .service-detail {
        grid-template-columns: 1fr;
        text-align: left;
        padding: 1.8rem 1.6rem;
    }

    .service-detail:nth-child(even) {
        direction: ltr;
    }

    .service-detail:nth-child(even) > * {
        direction: ltr;
    }

    .service-image {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .service-content {
        text-align: left;
    }

    .service-content h3 {
        margin-top: 0;
        font-size: 1.8rem;
    }

    .service-content ul {
        padding-left: 1.2rem;
        margin-top: 1rem;
    }

    .service-content li {
        padding: 0.6rem 0 0.6rem 1.4rem;
    }
}

@media (max-width: 768px) {
    .service-detail {
        padding: 1.4rem 1rem;
        gap: 1.5rem;
    }

    .service-image {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .service-content h3 {
        font-size: 1.6rem;
    }

    .service-content ul {
        padding-left: 1rem;
    }

    .service-content li {
        padding: 0.55rem 0 0.55rem 1.25rem;
    }
}

/* Service Details Page Styles */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-detail:nth-child(even) {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-image {
    background: var(--light-color);
    border-radius: 8px;
    padding: 0;
    text-align: center;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-image p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-content li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-content li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Engagement/Case Studies */
.engagement-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.engagement-card:hover {
    box-shadow: 0 5px 20px rgba(139, 58, 86, 0.15);
}

.company-logo-placeholder {
    width: 150px;
    height: 80px;
    background: transparent;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.engagement-card h4 {
    margin-bottom: 0.5rem;
}

.engagement-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 58, 86, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group button {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group button:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 58, 86, 0.3);
}

/* About Page */
.about-intro {
    background: var(--light-color);
    padding: 3rem 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.about-intro h2 {
    margin-bottom: 1rem;
}

.ceo-message {
    background: white;
    padding: 3rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ceo-message h3 {
    margin-bottom: 1.5rem;
}

.ceo-message p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.advantage-item h3 {
    margin-bottom: 1rem;
}

/* Print Styles */
@media print {
    .navbar, .footer {
        display: none;
    }
}



.engagement-grid {
    align-items: stretch;
}

.engagement-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.engagement-card p {
    flex-grow: 1;
}

@media (max-width: 768px) {

    .service-detail,
    .service-detail:nth-child(even) {
        display: flex;
        flex-direction: column;
    }

    .service-image {
        order: -1;
        width: 100%;
    }

    .service-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .engagement-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .engagement-grid .engagement-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 230px;
    }
}

.hero p {
    color: #ffffff !important;
}
