:root {
    /* Color Palette */
    --primary-color: #2A9D8F;
    /* Calming Teal */
    --primary-dark: #21867a;
    --secondary-color: #E9C46A;
    /* Warm Yellow/Gold */
    --accent-color: #F4A261;
    /* Soft Orange */
    --text-color: #264653;
    /* Dark Blue-Gray */
    --text-light: #6d8b96;
    --bg-color: #FDFBF7;
    /* Warm Off-White */
    --white: #ffffff;

    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Nunito', sans-serif;

    /* Shadows & Radius */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Body 'n Brain Specifics */
    --bnb-magenta: #e50068;
    --bnb-green: #afca0b;
    --bnb-light-gray: #868786;
    --bnb-dark-gray: #484847;
    --font-roboto: 'Roboto', sans-serif;
}

.bnb-accent-magenta {
    color: var(--bnb-magenta);
}

.bnb-bg-magenta {
    background-color: var(--bnb-magenta);
    color: white;
}

.bnb-accent-green {
    color: var(--bnb-green);
}

.bnb-bg-green {
    background-color: var(--bnb-green);
    color: white;
}

.bnb-section {
    font-family: var(--font-roboto);
}

/* BnB Buttons */
.bnb-btn {
    background-color: var(--bnb-magenta);
    color: white;
    border: none;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.bnb-btn:hover {
    background-color: #c40059;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* BnB Split Section (Was ist...) */
.bnb-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.bnb-logo-container {
    text-align: center;
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.bnb-logo {
    max-width: 250px;
    margin-bottom: var(--spacing-md);
}

.bnb-benefits-list {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin-top: var(--spacing-md);
}

.bnb-benefits-list li {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-weight: 600;
    font-family: var(--font-heading);
}

.bnb-benefits-list li svg {
    color: var(--bnb-green);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* BnB Icon Grid (Wissenswertes) */
.bnb-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.bnb-icon-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.bnb-icon-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.bnb-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bnb-magenta);
    background-color: rgba(229, 0, 104, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
}

.bnb-icon-wrapper svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.bnb-icon-content h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.bnb-icon-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* BnB Cards (Angebote) - Harmonized Style */
.bnb-pink-card {
    background-color: var(--white);
    color: var(--text-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
    border-top: 5px solid var(--bnb-magenta);
    position: relative;
    overflow: hidden;
}

.bnb-pink-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.bnb-pink-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--text-color);
}

.bnb-pink-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.bnb-card-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(229, 0, 104, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    color: var(--bnb-magenta);
}

.bnb-card-icon svg {
    width: 32px;
    height: 32px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bnb-split-section {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .bnb-logo-container {
        order: -1;
        /* Logo first on mobile */
        margin-bottom: var(--spacing-md);
    }

    .bnb-benefits-list {
        display: block;
    }
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header Styles */
.site-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 1.2rem 0;
    /* Increased padding */
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    /* Increased font size */
    font-weight: 700;
    color: var(--text-color);
    /* Changed to footer background color */
    display: flex;
    flex-direction: column;
    line-height: 1;
    align-items: center;
    /* Center items horizontally */
}

.sub-logo {
    font-size: 1.1rem;
    /* Increased size */
    font-weight: 400;
    color: var(--text-light);
    margin-top: 2px;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-list a {
    font-weight: 600;
    font-size: 1.1rem;
    /* Increased font size */
    color: var(--text-color);
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

/* Navigation Dropdown */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-color);
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: rgba(42, 157, 143, 0.05);
    /* Light primary color */
    color: var(--primary-color);
}

.dropdown-menu li a::after {
    display: none;
    /* Remove underline effect for dropdown items */
}

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
}

.phone-button {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background-color: var(--text-color);
    /* Changed to footer background color */
    color: var(--white);
    padding: 0.6rem 1.2rem;
    /* Increased padding */
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    /* Increased font size */
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.phone-button:hover {
    background-color: #1a3b47;
    /* Slightly darker shade of text-color */
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

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

/* Hero Section */
.hero {
    padding: var(--spacing-xl) 0;
    display: flex;
    align-items: center;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #e78c4d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

/* Hero Image Area */
.hero-image-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-blob {
    width: 100%;
    max-width: 550px;
    /* Increased size */
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    animation: morph 8s ease-in-out infinite;
    background-color: #ddd;
    /* Placeholder color while loading */
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-blob:hover .hero-img {
    transform: scale(1.05);
}

.blob-decoration {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100%;
    max-width: 550px;
    /* Increased size */
    aspect-ratio: 1/1;
    background-color: rgba(233, 196, 106, 0.3);
    /* Secondary color low opacity */
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    z-index: 1;
    transform: translate(20px, 20px);
    animation: morph 10s ease-in-out infinite reverse;
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    }

    50% {
        border-radius: 60% 40% 40% 60% / 55% 45% 55% 45%;
    }

    100% {
        border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    }
}

/* Brain Hub Hero Section */
.brain-hero-section {
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 1) 0%, rgba(253, 251, 247, 1) 100%);
}

.hero-text-center {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.brain-interactive-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    perspective: 1000px;
}

.brain-center-display {
    position: relative;
    width: 600px;
    /* Increased from 450px */
    max-width: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brain-img-hero {
    width: 100%;
    height: auto;
    /* The Magic Mask to hide hard edges */
    mask-image: linear-gradient(to bottom, black 60%, transparent 98%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 98%);
    filter: drop-shadow(0 0 30px rgba(42, 157, 143, 0.15));
    animation: brain-float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.brain-glow-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(229, 0, 104, 0.1) 0%, rgba(175, 202, 11, 0.05) 40%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    animation: pulse-glow-large 5s infinite alternate;
}

/* Orbit Particles */
.orbit-particle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--bnb-green);
    opacity: 0.6;
    z-index: 0;
}

.p1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 20%;
    animation: orbit 10s linear infinite;
}

.p2 {
    width: 12px;
    height: 12px;
    bottom: 30%;
    right: 10%;
    animation: orbit 15s linear infinite reverse;
    background-color: var(--bnb-magenta);
}

.p3 {
    width: 6px;
    height: 6px;
    top: 10%;
    right: 30%;
    animation: orbit 8s linear infinite;
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(150px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(150px) rotate(-360deg);
    }
}

.benefit-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    z-index: 2;
    width: 250px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fade-in-up 0.8s ease backwards;
    animation-delay: var(--delay);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.benefit-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--bnb-magenta);
}

/* Pseudo-element for connector line hint */
.benefit-item::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--bnb-magenta), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-column.left .benefit-item::before {
    right: -40px;
    background: linear-gradient(90deg, var(--bnb-magenta), transparent);
}

.benefit-column.right .benefit-item::before {
    left: -40px;
    background: linear-gradient(-90deg, var(--bnb-magenta), transparent);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 1.5rem;
    background: #fff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.benefit-text strong {
    color: var(--text-color);
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.benefit-text span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Specific alignments */
.benefit-column.left .benefit-item {
    flex-direction: row;
    text-align: left;
}

.benefit-column.right .benefit-item {
    flex-direction: row-reverse;
    text-align: right;
}

.hero-buttons-center {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

@keyframes brain-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse-glow-large {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .brain-interactive-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .benefit-column {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }

    .benefit-column.right .benefit-item {
        flex-direction: row;
        text-align: left;
    }

    .benefit-column.right .benefit-item::before,
    .benefit-column.left .benefit-item::before {
        display: none;
        /* Hide connectors on mobile */
    }

    .brain-center-display {
        order: -1;
        /* Brain on top */
        width: 300px;
        margin: 1rem 0;
    }

    .benefit-item {
        padding: 0.8rem 1.2rem;
    }
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

.section-light {
    background-color: #fff;
    /* Slightly lighter than body bg */
}

.section-header {
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    background-color: rgba(42, 157, 143, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Feature Row (Zig-Zag) */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.feature-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.feature-content p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
    font-size: 1.1rem;
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.text-link:hover {
    text-decoration: underline;
    gap: 8px;
    /* Subtle arrow movement */
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.bg-teal-100 {
    background-color: rgba(42, 157, 143, 0.15);
}

.text-teal-600 {
    color: var(--primary-color);
}

.bg-orange-100 {
    background-color: rgba(244, 162, 97, 0.15);
}

.text-orange-600 {
    color: var(--accent-color);
}

.bg-yellow-100 {
    background-color: rgba(233, 196, 106, 0.15);
}

.text-yellow-600 {
    color: #d4af37;
    /* Slightly darker gold for text */
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        padding: var(--spacing-xl) var(--spacing-lg);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        flex-direction: column;
        align-items: flex-start;
        overflow-y: auto;
        /* Allow scrolling if menu is long */
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-md);
    }

    /* Mobile Dropdown handling */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: var(--spacing-md);
        display: none;
        /* Hidden by default on mobile */
    }

    .nav-item-dropdown:hover .dropdown-menu {
        display: block;
        /* Show on click/hover in mobile */
    }

    .header-contact {
        display: none;
        /* Hide phone button in header on mobile, maybe add to menu */
    }

    /* Add phone to mobile menu if needed via JS or just hide for now */

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .hero-text {
        order: 2;
        /* Text below image on mobile */
        margin: 0 auto;
    }

    .hero-image-container {
        order: 1;
        margin-bottom: var(--spacing-md);
    }

    .image-blob,
    .blob-decoration {
        max-width: 350px;
        /* Smaller on mobile but still good size */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin: 0 auto var(--spacing-lg);
    }

    .hero-buttons {
        justify-content: center;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

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

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

    .hero-shape {
        width: 100%;
        right: 0;
        opacity: 0.5;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.intro-text {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: rgba(42, 157, 143, 0.1);
    /* Light primary */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.contact-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.contact-card p {
    color: var(--text-light);
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Form Styles */
.form-container {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    color: #1a3b47;
    /* Darker text color from screenshot */
    margin-bottom: var(--spacing-lg);
    font-size: 1.8rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a3b47;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

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

/* Input with Icon */
.input-with-icon {
    position: relative;
}

.input-with-icon input {
    width: 100%;
}

.input-with-icon.right input {
    padding-right: 2.5rem;
}

.input-icon {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: #e11d48;
    /* Red/Pink lock icon color */
    opacity: 0.7;
}

/* Phone Input Wrapper */
.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.flag-icon {
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
    z-index: 1;
}

.phone-input-wrapper input {
    padding-left: 3rem !important;
    width: 100%;
}

/* Radio Cards */
.radio-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.radio-card {
    cursor: pointer;
    position: relative;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-card-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background-color: #fff;
    flex-shrink: 0;
    position: relative;
}

.radio-text {
    display: flex;
    flex-direction: column;
    font-size: 0.95rem;
    color: #334155;
}

.radio-subtext {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 400;
}

/* Checked State */
.radio-card input:checked+.radio-card-content {
    background-color: #f0fdfa;
    /* Light teal bg */
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
}

.radio-card input:checked+.radio-card-content .radio-circle {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.radio-card input:checked+.radio-card-content .radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
}

/* Submit Button */
.btn-submit {
    background-color: #1e4e5f;
    /* Dark teal/blue from screenshot */
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: var(--spacing-md);
    width: 100%;
}

.btn-submit:hover {
    background-color: #163a47;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Form Footer */
.form-footer {
    margin-top: var(--spacing-sm);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 4px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: var(--spacing-md);
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    margin-top: auto;
    /* Push to bottom if content is short */
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

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

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--white);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .bnb-span-2 {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {

    .bnb-pink-card,
    .bnb-icon-item {
        padding: var(--spacing-lg);
    }
}