/* style.css */

/* Root variables for consistent theming */
:root {
    --primary-blue: #0A63F8;
    --dark-blue: #011E41;
    --light-grey: #F5F7FA;
    --text-grey: #667085;
    --white: #FFFFFF;
    --border-grey: #EAECF0;
    --green: #12B76A;
    --light-blue-bg: #F0F8FF; /* For add-on cards background */
    --accent-blue-tag: #E7F0FF; /* For recommendation tags */
    --light-border: #D0D5DD; /* For form inputs and general borders */
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-blue);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    border: 1px solid var(--primary-blue);
}

.btn-primary:hover {
    background-color: #0855d9;
    border-color: #0855d9;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--light-grey);
}

.btn-ghost {
    background: none;
    border: none;
    color: var(--text-grey);
    padding: 0;
    font-weight: 500;
}

.btn-ghost:hover {
    color: var(--dark-blue);
}

.btn-light-blue { /* Specific for the add-on button */
    background-color: var(--light-blue-bg);
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}
.btn-light-blue:hover {
    background-color: rgba(var(--primary-blue), 0.1);
}

/* Utility classes */
.section-padding {
    padding: 80px 0;
}

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

/* Header */
header {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-grey);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-grey);
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-blue);
}

/* Hero Section (Homepage specific) */
.hero-section {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.hero-section::before { /* Gradient overlay */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--dark-blue) 40%, rgba(1, 30, 65, 0.7) 70%, rgba(1, 30, 65, 0) 100%);
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 55%;
    background-image: url('https://via.placeholder.com/1200x600/CCCCCC/888888?text=Team+working+at+desk'); /* Placeholder image */
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Sales Consultancy Section (Homepage specific) */
.sales-consultancy-section {
    background-color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.sales-consultancy-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sales-consultancy-section p {
    font-size: 18px;
    color: var(--text-grey);
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Why Choose Section (Reused across pages) */
.why-choose-section {
    background-color: var(--light-grey); /* Default for homepage/pricing */
    padding: 80px 0;
    text-align: center;
}
.about-html .why-choose-section { /* Override for about page */
    background-color: var(--white);
}

.why-choose-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

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

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    border: 1px solid var(--border-grey); /* Added border for about.html consistency */
}

.feature-card i {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-grey);
}

/* Sales Package Section (Reused and Extended across pages) */
.sales-package-section {
    padding: 80px 0; /* Default padding */
    text-align: center;
}
.services-html .sales-package-section,
.pricing-html .sales-package-section {
    padding: 80px 0 40px 0; /* Adjusted padding for services and pricing hero */
}

.sales-package-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sales-package-section p.subtitle {
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 60px; /* Default margin */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.services-html .sales-package-section p.subtitle,
.pricing-html .sales-package-section p.subtitle {
    margin-bottom: 40px; /* Adjusted margin for services and pricing hero */
}

.recommendation-tag {
    background-color: var(--accent-blue-tag);
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.package-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.pricing-html .package-cards-grid {
    margin-bottom: 60px; /* Specific margin for pricing page */
}

.package-card {
    background-color: var(--white);
    border: 1px solid var(--border-grey);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px; /* Default height */
    text-align: left;
    position: relative;
}
.services-html .package-card,
.pricing-html .package-card {
    min-height: 520px; /* Increased height for services and pricing */
}


.package-card.growth-package {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    z-index: 1;
    transform: translateY(-20px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.package-card.growth-package .package-price {
    color: var(--white);
}
.package-card.growth-package .package-features li,
.package-card.growth-package .package-description { /* Added for pricing/services */
    color: rgba(255, 255, 255, 0.8);
}
.package-card.growth-package .btn-primary {
    background-color: var(--white);
    color: var(--primary-blue);
}
.package-card.growth-package .btn-primary:hover {
    background-color: var(--light-grey);
}
.package-card.growth-package .btn-ghost {
    color: var(--white);
}
.package-card.growth-package .btn-ghost:hover {
    color: var(--light-grey);
}

.package-type {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-grey);
    margin-bottom: 10px;
}
.package-card.growth-package .package-type {
    color: rgba(255, 255, 255, 0.8);
}

.package-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.package-price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-blue);
    display: flex;
    align-items: baseline;
}
.package-price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-grey);
    margin-left: 5px;
}
.package-card.growth-package .package-price span {
    color: rgba(255, 255, 255, 0.8);
}

.package-description { /* Added for pricing/services */
    font-size: 15px;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.package-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.package-features li {
    font-size: 16px;
    color: var(--text-grey);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.package-features li i {
    color: var(--green);
    margin-right: 10px;
    font-size: 14px;
}

.package-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Call to Action Section (Bottom Blue Section - Reused) */
.cta-bottom-section {
    background-color: var(--primary-blue);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-bottom-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-bottom-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-bottom-section .btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-bottom-section .btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}
.cta-bottom-section .btn-secondary:hover {
    background-color: var(--light-grey);
    border-color: var(--light-grey);
}

/* Footer (Reused from Homepage) */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0;
    font-size: 15px;
}

footer .container {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* About Page Specific Styles */
.about-section {
    padding: 80px 0;
    text-align: center;
}
.about-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}
.about-section .tagline {
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 60px;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
    text-align: left;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}
.about-text p {
    font-size: 16px;
    color: var(--text-grey);
    margin-bottom: 15px;
}

/* My Approach Section (About Page Specific) */
.my-approach-section {
    background-color: var(--light-grey);
    padding: 80px 0;
    text-align: center;
}
.my-approach-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}
.approach-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
}
.approach-card p {
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 20px;
}
.approach-card p:last-of-type {
    margin-bottom: 0;
}
.approach-card strong {
    color: var(--primary-blue);
}

/* Meet Raoul Section (About Page Specific) */
.meet-raoul-section {
    background-color: var(--light-grey);
    padding: 80px 0;
}

.meet-raoul-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.raoul-profile-pic {
    flex-shrink: 0;
}
.raoul-profile-pic img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary-blue);
}

.raoul-bio {
    flex-grow: 1;
    text-align: left;
}
.raoul-bio h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}
.raoul-bio p {
    font-size: 16px;
    color: var(--text-grey);
    margin-bottom: 15px;
}
.raoul-bio .raoul-name {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 20px;
}
.raoul-bio .credentials {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-grey);
    margin-bottom: 20px;
}
.raoul-bio .raoul-intro {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-blue);
    margin-bottom: 25px;
}

.raoul-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Contact Page Specific Styles */
.contact-hero-section {
    padding: 80px 0 60px 0;
    text-align: center;
}
.contact-hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}
.contact-hero-section p.subtitle {
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-form-card {
    background-color: var(--white);
    border: 1px solid var(--border-grey);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.contact-form-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-blue);
    margin-bottom: 8px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--light-border);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--dark-blue);
    background-color: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(10, 99, 248, 0.1);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.contact-form-card .btn-primary {
    width: 100%;
    margin-top: 20px;
    padding: 14px 24px;
    font-size: 18px;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.info-card {
    background-color: var(--light-blue-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.info-card i {
    font-size: 32px;
    color: var(--primary-blue);
}
.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}
.info-card p {
    font-size: 16px;
    color: var(--text-grey);
}
.info-card ul {
    margin-top: 10px;
}
.info-card ul li {
    font-size: 16px;
    color: var(--text-grey);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.info-card ul li i {
    color: var(--green);
    margin-right: 10px;
    font-size: 14px;
}

/* Pricing Page Specific Styles */
.pricing-hero-section {
    background-color: var(--white);
    padding: 80px 0 40px 0;
    text-align: center;
}
.pricing-hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}
.pricing-hero-section p.subtitle {
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Sales Coaching & Workshops Section (Pricing Page Specific) */
.coaching-workshops-section {
    background-color: var(--light-grey);
    padding: 80px 0;
    text-align: center;
}
.coaching-workshops-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}
.coaching-workshops-section p.subtitle {
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.coaching-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.coaching-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid var(--border-grey);
    display: flex;
    flex-direction: column;
}
.coaching-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.coaching-card p {
    font-size: 15px;
    color: var(--text-grey);
    margin-bottom: 20px;
    flex-grow: 1;
}
.coaching-card .price {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 20px;
}
.coaching-card .price span {
    font-size: 16px;
    color: var(--text-grey);
    font-weight: 500;
    margin-left: 5px;
}
.coaching-card ul {
    margin-bottom: 20px;
}
.coaching-card ul li {
    font-size: 15px;
    color: var(--text-grey);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.coaching-card ul li i {
    color: var(--green);
    margin-right: 10px;
    font-size: 14px;
}
.coaching-card .btn {
    align-self: flex-start;
}
.coaching-card .btn-secondary {
    background-color: var(--light-blue-bg);
}
.coaching-card .btn-secondary:hover {
    background-color: var(--accent-blue-tag);
}

/* Add-On Services Section (Reused from Services Page, also on Pricing) */
.add-on-services-section {
    background-color: var(--white);
    padding: 60px 0; /* Adjusted padding for services page */
    text-align: center;
}
.add-on-services-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

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

.add-on-card {
    background-color: var(--light-blue-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.add-on-card-header {
    margin-bottom: 20px;
}
.add-on-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.add-on-card .price-range {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
}
.add-on-card .price-range span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-grey);
    margin-left: 5px;
}
.add-on-card p {
    font-size: 15px;
    color: var(--text-grey);
    margin-bottom: 20px;
}
.add-on-card ul {
    margin-bottom: 20px;
    flex-grow: 1;
}
.add-on-card ul li {
    font-size: 15px;
    color: var(--text-grey);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.add-on-card ul li i {
    color: var(--primary-blue);
    margin-right: 10px;
    font-size: 14px;
}

/* Custom Needs Section (Pricing Page Specific) */
.custom-needs-section {
    background-color: var(--light-grey);
    padding: 80px 0;
    text-align: center;
}
.custom-needs-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}
.custom-needs-section p {
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Invest In Embedded Sales? Section (Pricing Page Specific) */
.why-invest-section {
    padding: 80px 0;
    text-align: center;
}
.why-invest-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}
.invest-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid var(--border-grey);
    text-align: left;
}
.benefit-card i {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: block;
}
.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.benefit-card p {
    font-size: 16px;
    color: var(--text-grey);
}

/* What I Do Section (Services Page Specific) */
.what-i-do-section {
    padding: 80px 0;
    text-align: center;
}
.what-i-do-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

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

.service-item {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.service-item-images {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.service-item-images img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}
.service-item-images img:last-child {
    width: 60%;
}
.service-item-images.single img {
    width: 100%;
}

.service-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-item p {
    font-size: 16px;
    color: var(--text-grey);
    margin-bottom: 20px;
}
.service-item .btn-ghost {
    align-self: flex-start;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        max-width: 100%;
        margin-bottom: 40px;
    }
    .hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        right: auto;
        top: auto;
    }
    .hero-section::before {
        background: none;
    }

    .about-content-grid,
    .meet-raoul-content {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 40px;
    }
    .about-content-grid .about-image {
        order: -1;
    }
    .about-text, .raoul-bio {
        text-align: center;
    }

    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-form-card, .contact-info-column {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .features-grid,
    .package-cards-grid,
    .coaching-grid,
    .add-on-grid,
    .invest-benefits-grid,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .package-card.growth-package {
        transform: translateY(0);
    }
    footer .container {
        grid-template-columns: repeat(2, 1fr);
    }
    .raoul-profile-pic {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-text h1,
    .sales-consultancy-section h2,
    .why-choose-section h2,
    .sales-package-section h2,
    .cta-bottom-section h2,
    .about-section h1,
    .about-text h2,
    .my-approach-section h2,
    .meet-raoul-bio h2,
    .contact-hero-section h1,
    .contact-form-card h2,
    .info-card h3,
    .pricing-hero-section h1,
    .coaching-workshops-section h2,
    .add-on-services-section h2,
    .custom-needs-section h2,
    .why-invest-section h2,
    .what-i-do-section h2 {
        font-size: 30px;
    }
    .about-section .tagline,
    .contact-hero-section p.subtitle,
    .pricing-hero-section p.subtitle {
        font-size: 16px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    header .container {
        flex-direction: column;
    }
    .features-grid,
    .package-cards-grid,
    .coaching-grid,
    .add-on-grid,
    .invest-benefits-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }
    footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column {
        text-align: center;
    }
    .footer-column ul {
        padding-left: 0;
    }
    .raoul-profile-pic img {
        width: 200px;
        height: 200px;
    }
    .raoul-cta-group {
        flex-direction: column;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .form-group {
        margin-bottom: 20px;
    }
    .form-group:last-child {
        margin-bottom: 0;
    }
    .meet-raoul-content {
        padding: 30px;
    }
    .service-item-images img:last-child {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 32px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .package-price {
        font-size: 40px;
    }
    .cta-bottom-section .btn-group {
        flex-direction: column;
    }
    .contact-form-card {
        padding: 25px;
    }
    .about-section h1 {
        font-size: 38px;
    }
}
