/* ========================================
   AutoSeguro - Escuela de Conducción
   Liminal Spaces Design System
   ======================================== */

/* CSS Variables - Liminal Palette */
:root {
    /* Liminal Color Palette */
    --beige-100: #f7f5f3;
    --beige-200: #f0ede8;
    --beige-300: #e8e2db;
    --beige-400: #d9d0c5;
    --beige-500: #c7b8a6;
    --beige-600: #b5a085;
    --beige-700: #9a8364;
    --beige-800: #7d6947;
    --beige-900: #5c4d36;
    
    /* Threshold Accents */
    --threshold-primary: #8b7355;
    --threshold-secondary: #a68b5b;
    --threshold-success: #7a8471;
    --threshold-warning: #b5956b;
    --threshold-danger: #a67c52;
    
    /* Liminal Grays */
    --liminal-gray-50: #faf9f8;
    --liminal-gray-100: #f4f2f0;
    --liminal-gray-200: #e9e5e1;
    --liminal-gray-300: #d3cdc4;
    --liminal-gray-400: #b8b0a3;
    --liminal-gray-500: #9e9482;
    --liminal-gray-600: #857c6b;
    --liminal-gray-700: #6d6456;
    --liminal-gray-800: #574f43;
    --liminal-gray-900: #423c32;
    
    /* Typography */
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Shadows */
    --shadow-light: 0 2px 8px rgba(92, 77, 54, 0.08);
    --shadow-medium: 0 4px 16px rgba(92, 77, 54, 0.12);
    --shadow-heavy: 0 8px 32px rgba(92, 77, 54, 0.16);
    
    /* Spacing System */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Liminal Transitions */
    --transition-threshold: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-passage: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-drift: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--liminal-gray-800);
    background-color: var(--beige-100);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--beige-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--liminal-gray-700);
}

a {
    color: var(--threshold-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--threshold-secondary);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container System */
.vault-container, 
.arch-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.foundation-header {
    background: linear-gradient(135deg, var(--beige-200) 0%, var(--beige-100) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--beige-300);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.span-navigation {
    padding: 1rem 0;
}

.span-navigation .vault-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arch-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--threshold-primary);
}

.arch-logo i {
    font-size: 1.75rem;
    color: var(--threshold-secondary);
}

.foundation-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.foundation-nav-menu a {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    color: var(--liminal-gray-700);
}

.foundation-nav-menu a:hover {
    background-color: var(--beige-300);
    color: var(--threshold-primary);
}

/* Mobile Menu Toggle */
.column-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
}

.column-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--threshold-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.column-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.column-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.column-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.span-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--beige-100) 0%, var(--beige-200) 100%);
    position: relative;
    overflow: hidden;
}

.span-hero .vault-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.arch-hero-content {
    animation: fadeInLeft 1s ease-out;
}

.column-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--beige-900);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.foundation-subtitle {
    font-size: 1.25rem;
    color: var(--liminal-gray-600);
    margin-bottom: 2rem;
}

.span-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.column-hero-image {
    animation: fadeInRight 1s ease-out;
}

.foundation-responsive-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

/* Buttons */
.arch-btn-primary,
.vault-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.arch-btn-primary {
    background: linear-gradient(135deg, var(--threshold-primary) 0%, var(--threshold-secondary) 100%);
    color: white;
    box-shadow: var(--shadow-light);
}

.arch-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.vault-btn-secondary {
    background: transparent;
    color: var(--threshold-primary);
    border: 2px solid var(--threshold-primary);
}

.vault-btn-secondary:hover {
    background: var(--threshold-primary);
    color: white;
}

/* Sections */
.vault-section {
    padding: 4rem 0;
}

.arch-section-alt {
    background: linear-gradient(135deg, var(--beige-200) 0%, var(--beige-150) 100%);
}

.column-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--beige-900);
}

.foundation-section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--liminal-gray-600);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Courses Grid */
.span-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.foundation-course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.foundation-course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.arch-course-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.vault-card-content {
    padding: 2rem;
}

.vault-card-content h3 {
    color: var(--threshold-primary);
    margin-bottom: 1rem;
}

.column-features {
    list-style: none;
    margin-top: 1.5rem;
}

.column-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--liminal-gray-700);
}

.column-features i {
    color: var(--threshold-success);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .column-menu-toggle {
        display: flex;
    }
    
    .foundation-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--beige-200) 0%, var(--beige-100) 100%);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        border-top: 1px solid var(--beige-300);
        box-shadow: var(--shadow-medium);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition-smooth);
    }
    
    .foundation-nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .foundation-nav-menu li {
        width: 100%;
    }
    
    .foundation-nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--beige-300);
        text-align: center;
    }
    
    .foundation-nav-menu a:last-child {
        border-bottom: none;
    }
    
    .span-hero .vault-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .column-title {
        font-size: 2rem;
    }
    
    .span-courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vault-container,
    .arch-container {
        padding: 0 1rem;
    }
}

/* Benefits Section */
.span-benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.foundation-benefits-text h3 {
    color: var(--threshold-primary);
    margin-bottom: 1.5rem;
}

.foundation-benefits-text h4 {
    color: var(--threshold-secondary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.column-benefits-image {
    text-align: center;
}

.arch-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vault-benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.vault-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.vault-benefit-card i {
    font-size: 2.5rem;
    color: var(--threshold-primary);
    margin-bottom: 1rem;
}

.vault-benefit-card h4 {
    color: var(--threshold-primary);
    margin-bottom: 1rem;
}

/* Testimonials */
.span-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.foundation-testimonial-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.foundation-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.arch-testimonial-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.vault-testimonial-content {
    padding: 2rem;
}

.vault-testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--liminal-gray-600);
}

.column-testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--beige-300);
}

.column-testimonial-author strong {
    color: var(--threshold-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.column-testimonial-author span {
    color: var(--liminal-gray-500);
    font-size: 0.9rem;
}

/* Safety Features */
.span-safety-content {
    margin-bottom: 3rem;
}

.foundation-safety-text h3 {
    color: var(--threshold-primary);
    margin-bottom: 1.5rem;
}

.foundation-safety-text h4 {
    color: var(--threshold-secondary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.arch-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.vault-feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.vault-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.vault-feature-item i {
    font-size: 2.5rem;
    color: var(--threshold-primary);
    margin-bottom: 1rem;
}

.vault-feature-item h4 {
    color: var(--threshold-primary);
    margin-bottom: 1rem;
}

/* Form Section */
.vault-form-section {
    background: linear-gradient(135deg, var(--beige-200) 0%, var(--beige-300) 100%);
}

.span-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.foundation-form-text h2 {
    color: var(--threshold-primary);
    margin-bottom: 1.5rem;
}

.arch-contact-benefits {
    margin-top: 2rem;
}

.vault-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--liminal-gray-700);
}

.vault-benefit-item i {
    color: var(--threshold-success);
    font-size: 1.2rem;
}

.column-contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.foundation-form h3 {
    color: var(--threshold-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.arch-form-group {
    margin-bottom: 1.5rem;
}

.arch-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--liminal-gray-700);
    font-weight: 500;
}

.arch-form-group input,
.arch-form-group select,
.arch-form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--beige-300);
    border-radius: 8px;
    font-family: var(--font-family-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background-color: var(--beige-100);
}

.arch-form-group input:focus,
.arch-form-group select:focus,
.arch-form-group textarea:focus {
    outline: none;
    border-color: var(--threshold-primary);
    background-color: white;
}

.vault-btn-primary {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--threshold-primary) 0%, var(--threshold-secondary) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.vault-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.foundation-form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--liminal-gray-600);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.foundation-form-note i {
    color: var(--threshold-success);
}

/* Final CTA Section */
.arch-final-cta {
    background: linear-gradient(135deg, var(--threshold-primary) 0%, var(--threshold-secondary) 100%);
    color: white;
    text-align: center;
}

.arch-final-cta .column-section-title {
    color: white;
}

.arch-final-cta .foundation-section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.span-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.span-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.arch-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.vault-btn-large,
.column-btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 10px;
}

.vault-btn-large {
    background: white;
    color: var(--threshold-primary);
    box-shadow: var(--shadow-medium);
}

.vault-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    color: var(--threshold-primary);
}

.column-btn-large {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.column-btn-large:hover {
    background: white;
    color: var(--threshold-primary);
}

/* Footer */
.foundation-footer {
    background: var(--beige-900);
    color: var(--beige-200);
    padding: 3rem 0 1rem;
}

.span-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.vault-footer-section h4 {
    color: var(--threshold-secondary);
    margin-bottom: 1rem;
}

.column-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--threshold-secondary);
    margin-bottom: 1rem;
}

.column-footer-logo i {
    font-size: 1.75rem;
}

.foundation-social-links {
    margin-top: 1.5rem;
}

.arch-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.arch-social-icons i {
    font-size: 1.5rem;
    color: var(--threshold-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.arch-social-icons i:hover {
    color: var(--beige-300);
    transform: translateY(-2px);
}

.arch-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--beige-300);
}

.arch-contact-item i {
    color: var(--threshold-secondary);
    width: 20px;
}

.foundation-schedule p {
    margin-bottom: 0.5rem;
    color: var(--beige-300);
}

.foundation-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.foundation-footer-links a {
    color: var(--beige-300);
    transition: var(--transition-smooth);
}

.foundation-footer-links a:hover {
    color: var(--threshold-secondary);
}

.column-footer-bottom {
    border-top: 1px solid var(--beige-700);
    padding-top: 2rem;
    text-align: center;
}

.arch-footer-divider {
    margin-bottom: 1rem;
}

.foundation-footer-bottom-content p {
    color: var(--beige-400);
    margin-bottom: 0.5rem;
}

/* Cookie Notice */
.arch-cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--beige-900) 0%, var(--liminal-gray-900) 100%);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    border-top: 3px solid var(--threshold-secondary);
}

.arch-cookie-notice.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    animation: slideUpCookie 0.4s ease-out;
}

@keyframes slideUpCookie {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.vault-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.foundation-cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.foundation-cookie-text i {
    font-size: 2rem;
    color: var(--threshold-secondary);
}

.foundation-cookie-text h4 {
    color: var(--threshold-secondary);
    margin-bottom: 0.5rem;
}

.foundation-cookie-text p {
    color: var(--beige-200);
    margin: 0;
}

.column-cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.arch-btn-accept,
.vault-btn-reject,
.foundation-btn-info {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.arch-btn-accept {
    background: var(--threshold-success);
    color: white;
    box-shadow: 0 2px 8px rgba(139, 150, 129, 0.3);
}

.arch-btn-accept:hover {
    background: #6b7563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 150, 129, 0.4);
}

.arch-btn-accept:active {
    transform: translateY(0);
}

.vault-btn-reject {
    background: transparent;
    color: white;
    border: 2px solid var(--beige-400);
}

.vault-btn-reject:hover {
    background: var(--beige-400);
    color: var(--beige-900);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 226, 216, 0.3);
}

.vault-btn-reject:active {
    transform: translateY(0);
}

.foundation-btn-info {
    background: transparent;
    color: var(--threshold-secondary);
    border: 2px solid var(--threshold-secondary);
}

.foundation-btn-info:hover {
    background: var(--threshold-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 150, 129, 0.3);
}

.foundation-btn-info:active {
    transform: translateY(0);
}

/* Mobile Responsive Updates */
@media (max-width: 1024px) {
    .span-benefits-content,
    .span-form-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .arch-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .vault-cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .column-cookie-buttons {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .foundation-cookie-text {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .foundation-cookie-text i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .arch-benefits-grid,
    .arch-features-grid {
        grid-template-columns: 1fr;
    }
    
    .span-testimonials-grid,
    .span-courses-grid {
        grid-template-columns: 1fr;
    }
    
    .column-contact-form {
        padding: 1.5rem;
    }
    
    .column-cookie-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .arch-cookie-notice {
        padding: 1rem;
    }
    
    .foundation-cookie-text h4 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .foundation-cookie-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .arch-btn-accept,
    .vault-btn-reject,
    .foundation-btn-info {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }
} 