:root {
    /* Exact Brand Colors */
    --bg-primary: #f8f9fa;
    --brand-dark: #2c344f;
    --cta-color: #Cb1c34;
    --cta-hover: #e5233e;

    --text-primary: var(--brand-dark);
    --text-secondary: rgba(44, 52, 79, 0.8);
    --dark-accent: #ffffff;

    /* Light Glassmorphism Variables */
    --glass-bg: #fefefe;
    --glass-border: rgba(44, 52, 79, 0.1);
    --glass-shadow: 0 10px 40px rgba(44, 52, 79, 0.08);

    /* Form Variables */
    --input-bg: #ffffff;
    --input-focus: #f0f2f5;

    /* Transitions */
    --transition-fast: 0.2s ease-out;
    --transition-default: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    /* Light gradient with a hint of brand-dark */
    background-image: radial-gradient(circle at top right, #ffffff 0%, #edf0f5 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    line-height: 1.6;
    overflow-x: hidden;
}

.page-wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Typography */
h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--cta-color);
}

/* Header / Hero */
.hero-section {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 1200px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.intro-text p {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Layout for Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    /* Increased from 1000px */
}

@media (min-width: 768px) {
    .main-content {
        grid-template-columns: 1fr 1fr;
        /* Balanced columns */
        align-items: flex-start;
    }
}

/* Glass Panels */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    /* Restored standard padding */
    box-shadow: var(--glass-shadow);
    transition: transform var(--transition-default), box-shadow var(--transition-default);
    overflow: hidden;
}

.form-card {
    padding: 0 !important;
    /* Keep form-card at 0 for Zapier embed */
}

.glass-panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* Contact Info Section */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.classic-item {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.classic-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-content h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    opacity: 0.9;
}

.info-content p {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 300;
}

.info-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.info-actions p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Footer */
footer {
    margin-top: 4rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

/* Responsive constraints */
@media (max-width: 480px) {
    .page-wrapper {
        padding: 1.5rem 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .glass-panel {
        padding: 1.8rem;
    }
}