:root {
    --primary-red: #E74C3C;
    --dark-teal: #2C5F7F;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --border-light: #EEEEEE;
}

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

body {
    font-family: 'Montserrat', 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

html {
    scroll-behavior: smooth;
}

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

.btn-primary,
a.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #C0392B 100%);
    color: var(--white);
    padding: 14px 35px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    letter-spacing: 0.5px;
}

.btn-primary:hover,
a.btn-primary:hover {
    background: linear-gradient(135deg, #C0392B 0%, #96281B 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.btn-secondary,
a.btn-secondary {
    background-color: var(--white);
    color: var(--primary-red);
    padding: 12px 30px;
    border: 2px solid var(--primary-red);
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
}

.btn-secondary:hover,
a.btn-secondary:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-contact,
a.btn-contact {
    background: linear-gradient(135deg, var(--primary-red) 0%, #C0392B 100%);
    color: var(--white);
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-contact:hover,
a.btn-contact:hover {
    background: linear-gradient(135deg, #C0392B 0%, #96281B 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.header {
    background-color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-red);
    display: flex;
    align-items: center;
}

.header-logo-svg {
    width: 100px;
    height: auto;
    display: block;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 50%, #9B59B6 100%);
    border-radius: 50%;
    color: white;
    font-weight: 800;
    font-size: 14px;
    margin-right: 8px;
}

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

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link.active {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav .nav-link {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav .nav-link:last-child {
    border-bottom: none;
}

.mobile-nav .nav-link::after {
    display: none;
}

.hero {
    padding: 60px 0;
    background-color: var(--white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--primary-red);
    border-radius: 15px;
    z-index: -1;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-teal);
    line-height: 1.2;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-teal);
    margin-bottom: 20px;
}

.hero-description {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.services {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.service-icon-img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: inline-block;
    object-fit: contain;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}


.sessions {
    padding: 80px 0;
    background-color: var(--white);
}

.sessions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sessions-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.sessions-text p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pricing-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    background-color: var(--white);
    border: 2px solid var(--primary-red);
    transform: scale(1.05);
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.price .currency {
    font-size: 18px;
    vertical-align: baseline;
}

.price .amount {
    font-size: 42px;
    font-weight: 800;
}

.price .decimal {
    font-size: 18px;
}

.pricing-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.pricing-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}


.message-section {
    background-color: var(--dark-teal);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.message-section h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.5px;
}


.about {
    padding: 80px 0;
    background-color: var(--white);
}

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

.about-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.quote {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 5px solid var(--primary-red);
}

.quote p {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    margin: 0;
    line-height: 1.5;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: block;
}


.testimonials {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.testimonials h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    border: 2px solid var(--primary-red);
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-red);
}


.footer {
    background-color: var(--dark-teal);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-logo {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
}

.footer-logo-svg {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* ===========================
   ABOUT US PAGE
   =========================== */
.nav-link.active {
    color: var(--primary-red);
    font-weight: 700;
}

.about-hero {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--dark-teal);
    margin-bottom: 40px;
    line-height: 1.3;
}

.about-intro {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-roles {
    padding: 80px 0;
    background-color: var(--white);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.role-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

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

.role-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.role-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.growth-partner {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.growth-partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.growth-partner-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.growth-partner-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.growth-partner-text strong {
    color: var(--text-dark);
    font-weight: 700;
}

.growth-partner-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: block;
}

.dtm-section {
    padding: 80px 0;
    background-color: var(--white);
}

.dtm-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    border: 4px solid var(--primary-red);
    border-radius: 20px;
    padding: 50px;
    background-color: var(--white);
}

.dtm-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

.dtm-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.dtm-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}


@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
    }

    .logo {
        flex: 1;
    }

    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .btn-contact {
        padding: 10px 20px;
        font-size: 12px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .sessions-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .message-section h2 {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .about-hero-content h1 {
        font-size: 32px;
    }

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

    .growth-partner-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dtm-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .services-hero-content h1 {
        font-size: 32px;
    }

    .services-detailed .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .services-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-hero-title h1 {
        font-size: 42px;
    }

    .snapshot-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .snapshot-service-header {
        grid-template-columns: 1fr 150px;
    }

    .sessions-pricing-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sessions-text-new h2 {
        font-size: 32px;
    }

    .pricing-grid-new {
        grid-template-columns: 1fr;
    }

    .pricing-card-new.featured {
        transform: scale(1);
    }

    .pricing-card-new.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 20px;
    }

    .sessions-text h2 {
        font-size: 28px;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .testimonials h2 {
        font-size: 28px;
    }

    .quote p {
        font-size: 18px;
    }

    .service-card {
        padding: 25px;
    }

    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-content {
        flex-direction: row;
        gap: 0;
    }

    .logo {
        flex: 1;
    }

    .btn-contact {
        display: none;
    }

    .about-hero-content h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .about-intro {
        font-size: 16px;
    }

    .role-card {
        padding: 25px 20px;
    }

    .growth-partner-text h2 {
        font-size: 26px;
    }

    .dtm-text h2 {
        font-size: 24px;
    }

    .dtm-content {
        padding: 25px;
        border-width: 3px;
    }

    .services-hero-content h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .services-intro {
        font-size: 16px;
    }

    .services-detailed .service-card {
        padding: 25px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .services-hero-title h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .learn-list li {
        font-size: 13px;
    }

    .snapshot-left h2 {
        font-size: 28px;
    }

    .snapshot-left p {
        font-size: 13px;
    }

    .snapshot-service-header {
        grid-template-columns: 1fr 120px;
    }

    .snapshot-text h4 {
        font-size: 13px;
    }

    .snapshot-image {
        height: 80px;
    }

    .sessions-text-new h2 {
        font-size: 24px;
    }

    .pricing-card-new {
        padding: 25px 20px;
    }

    .price-new .amount {
        font-size: 42px;
    }

    .pricing-card-new.featured {
        transform: scale(1);
    }
}


.services-hero {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.services-hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--dark-teal);
    margin-bottom: 30px;
    line-height: 1.3;
}

.services-intro {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-detailed {
    padding: 80px 0;
    background-color: var(--white);
}

.services-detailed .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.services-detailed .service-card {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.services-detailed .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    background-color: var(--white);
}

.service-features {
    list-style: none;
    margin: 25px 0;
    flex-grow: 1;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

.services-detailed .service-card a {
    align-self: flex-start;
    margin-top: 20px;
}

.services-cta {
    padding: 80px 0;
    background-color: var(--dark-teal);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}


.services-hero-new {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.services-hero-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.services-hero-title {
    position: relative;
}

.services-hero-title h1 {
    font-size: 64px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin: 0 0 40px 0;
    letter-spacing: -1px;
}

.services-headline {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
}

.what-youll-learn {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-red);
}

.what-youll-learn h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.learn-list {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 40px;
}

.learn-list li {
    font-size: 14px;
    color: var(--text-light);
    padding: 8px 0;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
    break-inside: avoid;
}

.learn-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 12px;
}

.service-snapshot-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2C5F7F 0%, #3a7a9e 50%, #4a8ab8 100%);
    position: relative;
    overflow: hidden;
}

.service-snapshot-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    background-size: 100px 100px;
    pointer-events: none;
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.snapshot-content {
    position: relative;
    z-index: 1;
}

.snapshot-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.snapshot-left {
    position: relative;
}

.snapshot-left h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.snapshot-left p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.snapshot-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.snapshot-service-item {
    border-top: 1px solid var(--border-light);
    padding-top: 25px;
    transition: all 0.3s ease;
}

.snapshot-service-item:first-child {
    border-top: none;
    padding-top: 0;
}

.snapshot-service-item:hover {
    transform: translateX(5px);
}

.snapshot-service-header {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 25px;
    align-items: flex-start;
}

.snapshot-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-red);
    margin: 0 0 15px 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.snapshot-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
    column-count: 2;
    column-gap: 30px;
}

.snapshot-list li {
    padding: 6px 0;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
    break-inside: avoid;
}

.snapshot-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

.snapshot-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.sessions-pricing {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
}

.sessions-pricing::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44, 95, 127, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sessions-pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sessions-text-new h2 {
    font-size: 52px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.sessions-text-new p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
}

.pricing-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pricing-card-new {
    background-color: var(--light-bg);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-red);
}

.pricing-card-new.featured {
    background: linear-gradient(135deg, var(--primary-red) 0%, #C0392B 100%);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.3);
}

.pricing-card-new.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card-new.featured .price-new .currency,
.pricing-card-new.featured .price-new .amount,
.pricing-card-new.featured .price-new .decimal {
    color: var(--white);
}

.pricing-card-new.featured .price-new .currency {
    vertical-align: baseline;
}

.pricing-card-new.featured h4,
.pricing-card-new.featured p {
    color: var(--white);
}

.price-new {
    margin-bottom: 20px;
}

.price-new .currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    vertical-align: baseline;
}

.price-new .amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-red);
}

.price-new .decimal {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
}

.pricing-card-new h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card-new p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .services-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .services-hero-title h1 {
        font-size: 52px;
        margin-bottom: 10px;
    }

    .learn-list {
        column-count: 1;
        column-gap: 0;
    }

    .snapshot-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px;
    }

    .snapshot-service-header {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .snapshot-list {
        column-count: 1;
        column-gap: 0;
    }

    .snapshot-image {
        width: 100%;
        max-width: 280px;
        height: 160px;
    }

    .sessions-pricing-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pricing-grid-new {
        grid-template-columns: 1fr;
    }

    .pricing-card-new.featured,
    .pricing-card-new.featured:hover {
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .services-hero-new,
    .service-snapshot-section,
    .sessions-pricing {
        padding: 45px 0;
    }

    .services-hero-title h1 {
        font-size: 40px;
        line-height: 1.15;
    }

    .what-youll-learn {
        padding: 22px;
    }

    .snapshot-card {
        padding: 24px;
        border-radius: 18px;
    }

    .snapshot-left h2 {
        font-size: 34px;
    }

    .sessions-text-new h2 {
        font-size: 38px;
        line-height: 1.15;
    }

    .price-new .amount {
        font-size: 48px;
    }
}


.testimonials-header {
    padding: 60px 0;
    background-color: #f3f3f3;
}

.testimonials-header-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.testimonials-header-left {
    flex: 1;
}

.testimonials-header-left h1 {
    font-size: 40px;
    font-weight: 800;
    color: #1f4e79;
    line-height: 1.2;
    margin: 0;
}

.testimonials-header-right {
    flex: 1;
}

.testimonials-header-right p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.testimonials-header-right strong {
    color: #222;
    font-weight: 700;
}

.testimonials-grid-section {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card-new {
    background-color: var(--white);
    border: 2px solid #e11d2e;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
}

.testimonial-quote {
    font-size: 20px;
    font-weight: 700;
    color: #e11d2e;
    line-height: 1.4;
    margin: 0 0 20px 0;
}

.testimonial-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.testimonial-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.testimonial-highlights li {
    font-size: 14px;
    color: #666;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.testimonial-highlights li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e11d2e;
    font-weight: 700;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0 0 5px 0;
}

.author-title {
    font-size: 14px;
    color: #666;
    margin: 0 0 3px 0;
}

.author-org {
    font-size: 13px;
    color: #777;
    margin: 0;
}

.author-org:last-child {
    margin-bottom: 0;
}

.testimonial-card-featured {
    grid-column: 1 / -1;
    background-color: #e11d2e;
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    color: var(--white);
}

.featured-quote {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 30px 0;
}

.featured-author {
    text-align: right;
}

.featured-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.featured-title {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Testimonials Responsive */
@media (max-width: 768px) {
    .testimonials-header-content {
        flex-direction: column;
        gap: 30px;
    }

    .testimonials-header-left h1 {
        font-size: 32px;
    }

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

    .testimonial-card-featured {
        padding: 30px;
    }

    .featured-quote {
        font-size: 22px;
    }

    .featured-author {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .testimonials-header-left h1 {
        font-size: 28px;
    }

    .testimonial-quote {
        font-size: 18px;
    }

    .testimonial-card-new {
        padding: 25px;
    }

    .testimonial-card-featured {
        padding: 25px;
    }

    .featured-quote {
        font-size: 20px;
    }
}


.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 50%, #9B59B6 100%);
    border-radius: 50%;
    color: white;
    font-weight: 800;
    font-size: 14px;
    margin-right: 8px;
}

.contact-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-teal) 0%, #3a7a9e 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -1px;
}

.contact-hero-image {
    position: relative;
}

.contact-hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
}

.contact-main {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.how-it-works h2,
.ready-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.how-it-works p,
.ready-section p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.half {
    grid-column: span 1;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-red) 0%, #C0392B 100%);
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #C0392B 0%, #96281B 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.contact-right {
    position: relative;
}

.contact-sidebar {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    position: sticky;
    top: 100px;
}

.contact-sidebar h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.contact-sidebar > p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-red);
    border-radius: 50%;
    color: var(--white);
    flex-shrink: 0;
}

.contact-info-item p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-hero-text h1 {
        font-size: 36px;
    }

    .contact-hero-image img {
        max-width: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-sidebar {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.half {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .contact-hero-text h1 {
        font-size: 28px;
    }

    .how-it-works h2,
    .ready-section h2 {
        font-size: 24px;
    }

    .contact-sidebar {
        padding: 30px;
    }

    .contact-sidebar h3 {
        font-size: 24px;
    }
}
