/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0B1F3A;
    --secondary: #FFFFFF;
    --accent: #F4F4F4;
    --highlight: #C9A646;
    --text: #2E2E2E;
    --text-light: #666666;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
}

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

/* Navigation */
.navbar {
    background: var(--secondary);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(11, 31, 58, 0.1);
    will-change: background;
    transition: background 0.3s ease;
}

.navbar--scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Top Text Logo */
.fortis-text-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--highlight);
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.fortis-text-logo:hover {
    transform: translateY(-1px);
    text-shadow: 0 2px 5px rgba(11, 31, 58, 0.2);
}

/* Remove old logo image styling */
.nav-logo img.logo {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--primary);
    color: var(--secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background: #0a2a4d;
}

/* ALIGN TOP PIXEL = .hero-content {   top: 320px    left: 170px
ALIGN EQUIDISTANT TO BACKGROUND =   top: 350px    left: 170px */

.hero {
    background: 
        linear-gradient(to right, rgba(11, 31, 58, 0.9), rgba(11, 31, 58, 0.7) 70%, transparent 100%),
        url('../images/background-image-no-small-container.png') center center no-repeat;
    background-size: cover;
    background-attachment: scroll;
    color: var(--secondary);
    padding: 0;
    text-align: left;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    left: 170px;
    padding: 0;
    z-index: 2;
    max-width: 580px;
}

.hero-title {
    font-size: 2.6rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-divider {
    width: 48px;
    height: 3px;
    background-color: var(--highlight);
    border: none;
    margin: 0 0 1.25rem 0;
}

.hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.hero-subtitle-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hero-subtitle-list li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.hero-subtitle-list li::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    background-color: var(--highlight);
    border-radius: 50%;
    margin-top: 0.48em;
}

.hero-text {
    font-weight: 300;
    margin-top: 1.25rem;
    font-size: 0.78rem;
    opacity: 0.45;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-width: 200px;
    text-align: center;
}

.btn-primary {
    background: var(--highlight);
    color: var(--primary);
}

.btn-primary:hover {
    background: #d4b452;
    transform: translateY(-2px);
}

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

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

/* About Section */
.about {
    padding: 100px 0;
    background: var(--accent);
}

.about-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text);
    font-size: 1.1rem;
    text-align: center; /* center About section paragraphs */
}

.credentials {
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.credential-icon {
    background: var(--highlight);
    color: var(--primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
}

.about-priorities {
    margin-top: 2rem;
}

.about-priorities h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center; /* center the subheading */
}

.priority-list {
    margin: 1.5rem 0;
    display: flex; /* center priority items */
    flex-direction: column;
    align-items: center;
}

.priority-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.priority-item {
    justify-content: center; /* center the icon + text horizontally */
}

.priority-icon {
    background: var(--highlight);
    color: var(--primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Our Process Section */
.process {
    padding: 100px 0;
    background: var(--accent);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.process-item {
    background: var(--secondary);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.process-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    border-bottom: 2px solid var(--highlight);
    padding-bottom: 0.5rem;
}

.coming-soon {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    background: var(--accent);
    border-left: 3px solid var(--highlight);
}

.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service {
    padding: 1rem;
    border-left: 3px solid var(--primary);
    background: var(--accent);
}

.service h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.service p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.5;
}

/* Offer Section */
.offer {
    padding: 100px 0;
    background: var(--secondary);
}

.program-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stage {
    background: var(--accent);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stage:hover {
    transform: translateY(-5px);
}

.stage-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--highlight);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.stage h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.stage p {
    margin-bottom: 1.5rem;
    color: var(--text);
}

.stage ul {
    list-style: none;
    text-align: left;
}

.stage li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.stage li:before {
    content: "•";
    color: var(--highlight);
    position: absolute;
    left: 0;
}

.investment-section {
    text-align: center;
    background: var(--secondary);
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid var(--highlight);
}

.investment-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
    border-bottom: 2px solid var(--highlight);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.investment-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    width: 100%;
}

/* Center the main heading */
.contact-info h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    color: var(--primary);
}

/* Add space between heading and box */
.contact-info > p {
    text-align: center;
    margin-bottom: 2rem; /* Increased space before box */
    font-size: 1.1rem;
    color: var(--text);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details {
    background: var(--accent);
    padding: 2.5rem 3rem 2rem; /* Reduced bottom padding: top right bottom */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-details p {
    margin-bottom: 1.2rem; /* Reduced spacing between lines */
    line-height: 1.5; /* Tighter line spacing */
    font-size: 1.1rem;
    color: var(--text);
    text-align: center;
}

.consultation-review-list {
    list-style: disc;
    /* Center the list container while keeping list items left-aligned inside */
    padding-left: 0;
    margin: 0 auto 1.2rem;
    display: inline-block;
    text-align: left;
    list-style-position: inside;
}

.consultation-review-list li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.5;
}

.contact-limited-note {
    font-style: italic;
    color: var(--text-light) !important;
    border-left: 3px solid var(--highlight);
    padding-left: 1rem;
    margin: 1.5rem 0 !important;
}

.contact-sub-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.contact-sub-section h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-email-address {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 1px solid var(--highlight);
    padding-bottom: 1px;
    transition: color 0.2s ease;
}

.contact-email-address:hover {
    color: var(--highlight);
}

.contact-details h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.email-link-container {
    margin: 2rem 0 1.5rem; /* Reduced bottom margin */
    padding: 1.5rem; /* Reduced padding */
    /* background: var(--secondary); */
    border-radius: 8px;
    /* border-left: 4px solid var(--highlight); */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.email-link-container p {
    text-align: center;
    margin-bottom: 1rem; /* Reduced margin */
    color: var(--text-light);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem; /* Slightly smaller text */
}

.email-subtext {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.email-link {
    /* Let .btn and .btn-primary provide all visual styles so the CTA matches
       the hero button exactly. Only keep structural centering and icon spacing. */
    display: inline-block;
    text-decoration: none;
    margin: 0.5rem auto;
}

.email-icon {
    margin-right: 0.6rem;
    color: inherit; /* inherit color from parent (.btn-primary) */
}

/* Circular Logo - Keep original size */
.circular-logo-container {
    display: block;
    text-align: center;
    margin: 1.5rem auto 0; /* Reduced top margin */
}

.circular-logo {
    width: 200px; /* Keep original size */
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.circular-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 15px rgba(201, 166, 70, 0.3));
}

.contact-logo {
    margin-top: 2rem; /* Reduced from 2.5rem */
    padding-top: 2rem; /* Reduced from 2.5rem */
    border-top: 1px solid #eee;
    text-align: center;
}

/* Remove old footer logo styling */
.footer-logo {
    display: none;
}

.form-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.form-modal-content {
    background-color: var(--secondary);
    margin: 4% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-modal-content h2 {
    padding: 2rem 2rem 1rem;
    margin: 0;
    text-align: center;
    border-bottom: 2px solid var(--accent);
    color: var(--primary);
    font-size: 1.8rem;
}

.form-modal-close {
    color: var(--text-light);
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10001;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.form-modal-close:hover {
    color: var(--primary);
    background: var(--accent);
}

.consultation-form-container {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input:not([type="radio"]):not(.iti__tel-input) {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--accent);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--accent);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    resize: vertical;
    background: var(--secondary);
    color: var(--text);
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight);
}

/* Radio button groups */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.6rem 0.9rem;
    border: 2px solid var(--accent);
    border-radius: 4px;
    transition: border-color 0.2s ease, background 0.2s ease;
    font-weight: 400;
}

.radio-option:hover {
    border-color: var(--highlight);
    background: rgba(201, 166, 70, 0.06);
}

.radio-option input[type="radio"] {
    -webkit-appearance: radio;
    appearance: radio;
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    margin: 0;
    padding: 0;
    accent-color: var(--highlight);
    flex-shrink: 0;
    cursor: pointer;
    align-self: center;
}

.radio-option:has(input:checked) {
    border-color: var(--highlight);
    background: rgba(201, 166, 70, 0.1);
}

.radio-label {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1;
}

.form-intro {
    margin: 0;
    padding: 1.25rem 2rem 1.5rem;
    background: rgba(201, 166, 70, 0.07);
    border-bottom: 2px solid var(--accent);
}

.form-intro-headline {
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.4rem 0;
    line-height: 1.4;
}

.form-intro-sub {
    color: var(--text-light);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.5;
}

.conditional-field label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input:not([type="radio"]):not(.iti__tel-input):focus {
    outline: none;
    border-color: var(--highlight);
}

/* ---- intl-tel-input overrides ---- */
/* Make the iti wrapper fill the full width of the form group */
.iti {
    display: block !important;
    width: 100% !important;
}

/* The actual <input> inside iti must span full width and respect the library's padding */
.iti input.iti__tel-input,
.iti input.iti__tel-input[type="tel"] {
    width: 100% !important;
    height: auto;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border: 2px solid var(--accent);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.iti input.iti__tel-input:focus,
.iti input.iti__tel-input[type="tel"]:focus {
    outline: none;
    border-color: var(--highlight);
}

/* Keep the dial-code badge vertically centred and styled consistently */
.iti__selected-dial-code {
    font-size: 0.95rem;
    color: var(--text);
}

/* Style the selected-country button area */
.iti .iti__selected-country-primary {
    background: transparent;
}

/* Remove default outlines on the flag container */
.iti .iti__selected-country:focus {
    outline: none;
}

/* Invalid state: red border on the input */
.phone-invalid input.iti__tel-input,
.phone-invalid input.iti__tel-input[type="tel"] {
    border-color: #c0392b !important;
}

/* ---- Phone error message ---- */
.phone-error {
    display: none;           /* hidden by default */
    margin-top: 0.45rem;
    font-size: 0.85rem;
    color: #c0392b;
    font-weight: 500;
    align-items: center;
    gap: 0.35rem;
}

.phone-error::before {
    content: '⚠';
    font-size: 0.9rem;
}

.phone-error.visible {
    display: flex;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--highlight);
    color: var(--primary);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #d4b452;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 166, 70, 0.3);
}

.btn-submit:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.success-message {
    display: none;
    padding: 3rem 2rem;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-message h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.success-message p {
    color: var(--text);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.redirect-timer {
    font-size: 1.3rem;
    color: var(--highlight);
    font-weight: 600;
    margin: 1.5rem 0;
}

.skip-redirect {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid var(--highlight);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.skip-redirect:hover {
    color: var(--highlight);
    border-bottom-color: var(--primary);
}

/* How We Work Section */
.how-we-work {
    padding: 100px 0;
    background: var(--secondary);
}

.how-we-work-intro {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 3rem;
    font-size: 1.1rem;
}

.how-we-work-intro p {
    margin-bottom: 1rem;
}

.process-steps {
    display: grid;
    gap: 2.5rem;
    margin: 3rem 0;
}

.process-step {
    background: var(--accent);
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--highlight);
    color: var(--secondary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
}

.process-step p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.process-step ul {
    margin: 1rem 0 1rem 1.5rem;
}

.process-step li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.process-footer {
    text-align: center;
    margin-top: 100px; 
    font-size: 1.2rem;
    color: var(--primary);
}

/* Results Section */
.results {
    padding: 100px 0;
    background: var(--accent);
    overflow: hidden;
}

.results-intro {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 3rem;
    font-size: 1.1rem;
    color: var(--text);
}

.results-intro p {
    margin-bottom: 0.75rem;
}

.results-intro p:last-child {
    margin-bottom: 0;
}

/* ── Video Testimonials ─────────────────────────────────────────────────────── */

.video-testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 0 0 3rem;
}

.video-testimonial-card {
    background: var(--secondary);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

/* 9:16 portrait video wrapper */
.video-testimonial-player {
    position: relative;
    width: 100%;
    padding-top: 177.78%; /* 9:16 */
    background: #000;
    overflow: hidden;
    flex-shrink: 0;
}

.video-testimonial-player iframe,
.video-testimonial-player video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    background: #000;
}

.video-testimonial-content {
    padding: 1.5rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    flex-grow: 1;
}

.video-testimonial-header {
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.75rem;
}

.video-testimonial-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--primary);
    margin: 0 0 0.25rem;
}

.video-testimonial-meta {
    font-size: 0.875rem;
    color: var(--highlight);
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.video-testimonial-pull-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary);
    border-left: 3px solid var(--highlight);
    padding-left: 1rem;
    margin: 0;
    line-height: 1.55;
}

.video-testimonial-description {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text);
    margin: 0;
}

.video-testimonial-results {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.video-testimonial-results li {
    font-size: 0.9rem;
    color: var(--text);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.video-testimonial-results li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight);
    font-weight: 700;
    font-size: 0.85rem;
}

/* ── Google Rating Summary ──────────────────────────────────────────────────── */

.testimonials-grid {
    margin-top: 1rem;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 auto;
    padding: 1.75rem 2rem;
    background: var(--secondary);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 420px;
}

.rating-score {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--highlight);
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.rating-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.rating-stars {
    font-size: 1.4rem;
    color: var(--highlight);
    letter-spacing: 2px;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.88rem;
}

.google-reviews-link {
    display: inline-block;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--highlight);
    padding-bottom: 1px;
    transition: color 0.2s ease;
    width: fit-content;
}

.google-reviews-link:hover {
    color: var(--highlight);
}

/* Responsive video testimonials */
@media (max-width: 900px) {
    .video-testimonials {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .video-testimonial-content {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .video-testimonial-name {
        font-size: 1.2rem;
    }
}

/* Team Section */
.team {
    padding: 100px 0;
    background: var(--accent);
}

.team-members {
    display: grid;
    gap: 3rem;
    margin: 100px 0 0;
}

/* Primary card — Bartek: wider image */
.team-member--primary {
    grid-template-columns: 400px 1fr;
}

.team-member--primary .team-member-image {
    width: 400px;
}

/* Secondary row: two cards side by side */
.team-secondary-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Secondary cards — smaller image */
.team-member--secondary {
    grid-template-columns: 280px 1fr;
}

.team-member--secondary .team-member-header h3 {
    font-size: 1.3rem;
}

.team-member--secondary .team-role {
    font-size: 0.95rem;
}

.team-member--secondary .team-member-bio p {
    font-size: 0.9rem;
}

.team-member {
    background: var(--secondary);
    padding: 0;
    border-radius: 8px;
    display: grid;
    gap: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.team-member-image {
    width: 280px;
    height: 100%;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.team-member:hover .team-photo {
    transform: scale(1.05);
}

.team-member-content {
    padding: 2.5rem 2.5rem 2.5rem 0;
    display: flex;
    flex-direction: column;
}

.team-member-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--highlight);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.team-member-bio p {
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 0.55rem;
}

.team-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--accent);
}

.team-footer p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.section-description {
    text-align: center;
    max-width: 900px;
    margin: 1rem auto;
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.7;
}

/* Membership Section */
.membership {
    padding: 100px 0;
    background: var(--secondary);
}

.membership-intro {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 3rem;
}

.membership-intro p {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.membership-initial {
    background: var(--secondary);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    border-left: 4px solid var(--highlight);
}

.membership-initial h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: var(--highlight);
    margin: 1rem 0;
}

.membership-initial ul {
    margin: 1rem 0 1rem 1.5rem;
}

.membership-initial li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.membership-step-title {
    text-align: center;
    font-size: 1.8rem;
    /* margin: 3rem 0 2rem; */
    margin-bottom: 64px;
}

.membership-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.membership-tier {
    background: #f8f8f8;
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.membership-tier:hover,
.membership-tier.active {
    transform: translateY(-5px);
    border-color: var(--highlight);
    background: var(--secondary);
}

.membership-tier.featured {
    border: 2px solid var(--highlight);
    position: relative;
    background: var(--secondary);
}

/* Remove featured border when hovering over or clicking any tier */
.membership-tiers:has(.membership-tier:hover) .membership-tier.featured:not(:hover),
.membership-tiers:has(.membership-tier.active) .membership-tier.featured:not(.active) {
    border-color: transparent;
    background: #f8f8f8;
}

.membership-tier h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--highlight);
    margin: 1rem 0;
}

.tier-subtitle {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.tier-includes ul {
    margin: 1rem 0 0 1.5rem;
}

.tier-includes li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.tier-includes .fit-item {
    margin-bottom: 0.75rem;
    font-size: inherit;
}

.tier-includes .fit-icon {
    width: 18px;
    height: 18px;
    font-size: 0.8rem;
    min-width: 18px;
    min-height: 18px;
}

.membership-addon {
    background: var(--secondary);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    border-left: 4px solid var(--primary);
}

.membership-addon h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.addon-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

.membership-addon ul {
    margin: 1rem 0 0 1.5rem;
}

.membership-addon li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.membership-commitment {
    background: var(--accent);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    border: 2px solid var(--primary);
    text-align: center;
}

.membership-commitment h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.membership-commitment p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.membership-commitment p:last-of-type {
    margin-bottom: 0;
}

.membership-footer {
    text-align: center;
    max-width: 700px;
    margin: 3rem auto 0;
    color: var(--text);
    font-size: 0.95rem;
    opacity: 0.8;
}

.membership-footer p {
    margin-bottom: 1.5rem;
}

.membership-footer p:last-child {
    margin-bottom: 0;
}

.membership-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.fit-section {
    background: var(--secondary);
    padding: 2rem;
    border-radius: 8px;
}

.fit-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.fit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.fit-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
    line-height: 1;
}

.fit-icon-yes {
    background: var(--highlight);
    color: var(--secondary);
}

.fit-icon-no {
    background: #d9534f;
    color: var(--secondary);
}

/* Remove old ul/li styling for fit-section */
.fit-section ul {
    margin-left: 1.5rem;
}

.fit-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {

    .form-modal-content {
        width: 95%;
        margin: 10% auto;
        max-width: 400px;
    }
    
    .consultation-form-container {
        padding: 1.5rem;
    }
    
    .form-modal-content h2 {
        font-size: 1.5rem;
        padding: 1.5rem 1rem 1rem;
    }
    
    .success-message {
        padding: 2rem 1rem;
    }

    .contact-details {
        padding: 2rem 1.5rem 1.5rem; /* Reduced padding on mobile */
    }
    
    .email-link-container {
        padding: 1.25rem; /* Reduced on mobile */
        margin: 1.5rem 0 1.25rem;
    }
    
    .email-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        max-width: 280px;
    }
    
    .circular-logo {
        width: 160px;
        height: 160px;
    }
    
    .contact-logo {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-info > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .how-we-work,
    .results,
    .team,
    .membership {
        padding: 60px 0;
    }
}

/* Remove old footer logo styling */
.footer-logo {
    display: none;
}

/* Privacy Policy Page */
.privacy-policy {
    padding: 8rem 0 4rem;
    background: var(--secondary);
    min-height: calc(100vh - 120px);
}

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

.privacy-policy-title {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.privacy-policy-subtitle {
    font-size: 1.2rem;
    color: var(--highlight);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.privacy-policy-effective {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.privacy-policy-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1rem;
}

.privacy-policy-content h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-policy-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.privacy-policy-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    padding-left: 1.5rem;
    position: relative;
}

.privacy-policy-content ul li::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    background-color: var(--highlight);
    border-radius: 50%;
}

.privacy-divider {
    border: none;
    height: 1px;
    background: #e0e0e0;
    margin: 2rem 0;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--secondary);
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--highlight);
}

/* Image hover effects */
.professional-headshot {
    transition: transform 0.3s ease;
}

.professional-headshot:hover {
    transform: scale(1.02);
}

/* ── Hamburger Button ────────────────────────────── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.hamburger-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
    transform-origin: center;
}

/* Animated X state */
.nav-hamburger.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
    width: 0;
}
.nav-hamburger.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Overlay ───────────────────────────────── */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 31, 58, 0.45);
    z-index: 1049;
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(2px);
}

.mobile-menu-overlay.is-visible {
    opacity: 1;
}

/* ── Mobile Drawer ────────────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--primary);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

/* Header row inside drawer */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.mobile-menu-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--highlight) !important;
    letter-spacing: 2px;
}

/* Close button (×) */
.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    padding: 0;
    flex-shrink: 0;
}

.mobile-menu-close span {
    display: block;
    position: absolute;
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transition: background 0.2s ease;
}

.mobile-menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-close:hover span {
    background: #fff;
}

/* Nav links */
.mobile-menu-list {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    flex: 1;
}

.mobile-menu-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-menu-list li:first-child {
    border-top: none;
}

.mobile-menu-list a {
    display: block;
    padding: 1rem 1.6rem;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.97rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.2s ease, padding-left 0.2s ease, background 0.2s ease;
}

.mobile-menu-list a:hover,
.mobile-menu-list a:focus {
    color: #fff;
    padding-left: 2rem;
    background: rgba(255, 255, 255, 0.05);
    outline: none;
}

/* Contact CTA link at bottom */
.mobile-menu-cta {
    color: var(--highlight) !important;
    font-weight: 500 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }
    
    .fortis-text-logo {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .hero {
        padding: 0;
        background-attachment: scroll;
        min-height: 100vh;
        background: 
            linear-gradient(to bottom, rgba(11, 31, 58, 0.9), rgba(11, 31, 58, 0.8)),
            url('../images/logo_2.png') center center no-repeat;
        background-size: contain;
        background-position: center;
        background-color: var(--primary);
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        margin: 0 auto;
        padding: 20px;
        text-align: center;
        width: 100%;
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 1.65rem;
        text-align: center;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }

    .hero-divider {
        margin: 0 auto 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle-list {
        align-items: flex-start;
        margin: 0 auto 2rem;
        gap: 0.6rem;
        width: fit-content;
        max-width: 88%;
    }

    .hero-subtitle-list li {
        font-size: 0.88rem;
        text-align: left;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .about-grid,
    .program-stages,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .process {
        padding: 60px 0;
    }
    
    .offer {
        padding: 60px 0;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .process-item {
        padding: 1.5rem;
    }
    
    .contact-details {
        padding: 1.5rem;
    }
    
    .contact-details p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .email-link-container {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .email-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        max-width: 100%;
        width: 100%;
    }
    
    /* Mobile circular logo styling */
    .circular-logo-container {
        width: 160px;
        height: 160px;
    }
    
    .circular-logo {
        width: 140px;
        height: 140px;
    }
    
    .contact-logo {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .contact-details p {
        text-align: left;
    }
    
    /* Adjust section titles for mobile */
    .section-title {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    /* Adjust program stages for mobile */
    .stage {
        padding: 1.5rem;
    }
    
    .stage-number {
        font-size: 2.5rem;
    }
    
    .stage h3 {
        font-size: 1.3rem;
    }
    
    /* Adjust about section heading */
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .credential-item {
        font-size: 1rem;
    }
    
    /* Adjust process items */
    .process-item h3 {
        font-size: 1.5rem;
    }
    
    .service h4 {
        font-size: 1.1rem;
    }
    
    /* Adjust investment section */
    .investment-section {
        padding: 2rem 1.5rem;
    }
    
    .investment-section h3 {
        font-size: 1.5rem;
    }
    
    .investment-section p {
        font-size: 1rem;
    }
    
    /* Mobile styles for membership sections */
    .membership-addon,
    .membership-commitment {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .membership-addon h4,
    .membership-commitment h4 {
        font-size: 1.3rem;
    }
    
    .membership-commitment p {
        font-size: 1rem;
    }
    
    .addon-price {
        font-size: 1.5rem;
    }
    
    /* Improve contact heading */
    .contact-info h2 {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .contact-info > p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    /* Team section mobile adjustments */
    .team-member {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .team-member--primary,
    .team-member--secondary {
        grid-template-columns: 1fr;
    }

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

    .team-member--primary .team-member-image,
    .team-member--secondary .team-member-image {
        width: 100%;
    }
    
    .team-member-image {
        width: 100%;
        height: 500px;
    }
    
    .team-member-content {
        padding: 2rem 1.5rem;
    }
    
    .team-member-header h3 {
        font-size: 1.5rem;
    }
    
    .team-role {
        font-size: 1rem;
    }

    /* Privacy Policy mobile */
    .privacy-policy {
        padding: 6rem 0 3rem;
    }

    .privacy-policy-title {
        font-size: 2rem;
    }

    .privacy-policy-content h2 {
        font-size: 1.3rem;
    }

    .privacy-policy-content p,
    .privacy-policy-content ul li {
        font-size: 1rem;
    }
}