/* ==========================================================================
   INJOE FOUNDATION - MODERN DESIGN SYSTEM & GLOBAL STYLES
   ========================================================================== */

/* Montserrat & Outfit Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* HSL Core Color Scale */
    --color-primary: hsl(218, 71%, 21%);       /* #0f2b5b - Deep Navy */
    --color-primary-light: hsl(218, 50%, 32%); /* Slate Navy for hover */
    --color-primary-dark: hsl(218, 80%, 12%);  /* Dark Navy for footer & modals */
    --color-accent: hsl(205, 100%, 45%);       /* #0077cc - Trust Blue */
    --color-accent-hover: hsl(205, 100%, 35%); /* Deep Blue hover */
    --color-accent-light: hsl(205, 100%, 96%); /* Light tint for alerts/backgrounds */
    --color-secondary: hsl(28, 92%, 54%);      /* Warm Coral for accent highlights */
    
    /* Neutrals */
    --color-bg-light: hsl(210, 20%, 98%);       /* Light grey-blue */
    --color-bg-white: hsl(0, 0%, 100%);         /* White */
    --color-text-main: hsl(210, 24%, 16%);      /* Charcoal */
    --color-text-muted: hsl(210, 12%, 46%);     /* Cool grey */
    --color-text-light: hsl(210, 20%, 96%);     /* Off-white */

    /* Typography */
    --font-sans: 'Outfit', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --fs-h1: clamp(2.5rem, 6vw, 4.6rem);
    --fs-h2: clamp(1.8rem, 4vw, 2.6rem);
    --fs-h3: clamp(1.3rem, 2.5vw, 1.7rem);
    --fs-body: 1.05rem;
    --fs-small: 0.9rem;
    
    /* Border Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 32, 66, 0.04);
    --shadow-md: 0 8px 24px rgba(15, 32, 66, 0.06);
    --shadow-lg: 0 16px 40px rgba(15, 32, 66, 0.1);
    --shadow-xl: 0 24px 50px rgba(15, 32, 66, 0.16);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

/* ==========================================================================
   BASE & RESET STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: var(--fs-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
    background: hsl(218, 30%, 75%);
    border-radius: var(--radius-full);
    border: 2px solid var(--color-bg-light);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* Layout Containers */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--color-bg-light);
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
}

.hero h1,
.hero-fundacion h1,
.hero-small h1 {
    color: #ffffff !important;
}

.section-title {
    font-size: var(--fs-h2);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    background: rgba(15, 43, 91, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 98px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-smooth);
}

.nav-logo:hover {
    opacity: 0.9;
}

/* Desktop Menu */
.nav-desktop {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.6px;
    position: relative;
    padding: 6px 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-bg-white);
}

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

.nav-link.active {
    color: var(--color-bg-white);
    font-weight: 600;
}

/* Navigation Actions & Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-donar {
    background: linear-gradient(135deg, var(--color-accent) 0%, #005fa3 100%);
    color: white;
    padding: 10px 26px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 119, 204, 0.2);
    transition: var(--transition-smooth);
}

.btn-donar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 119, 204, 0.4);
    background: linear-gradient(135deg, #0088ee 0%, var(--color-accent) 100%);
}

.btn-donar:active {
    transform: translateY(0);
}

/* Mobile Toggle Hamburger */
.menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    display: none;
    padding: 6px;
    transition: var(--transition-smooth);
}

.menu-btn:hover {
    color: var(--color-accent);
}

/* Mobile Menu Slide-in Overlay */
.nav-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(15, 43, 91, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-mobile.active {
    left: 0;
}

.nav-mobile .nav-link {
    font-size: 1.8rem;
    color: white;
    font-weight: 600;
}

/* Responsive Menu Trigger */
@media (max-width: 992px) {
    .nav-desktop {
        display: none;
    }
    .menu-btn {
        display: block;
    }
}

/* ==========================================================================
   HERO & CAROUSEL SECTION
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Cinematic Ken Burns Effect */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
}

.slide.active {
    opacity: 1;
    transform: scale(1.02);
}

/* Readability Overlay Gradient */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 32, 66, 0.45) 20%, rgba(15, 32, 66, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 880px;
    padding: 0 24px;
}

.hero h1 {
    font-size: var(--fs-h1);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    max-width: 680px;
    margin: 0 auto 3rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #005fa3 100%);
    color: white;
    padding: 15px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 119, 204, 0.35);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 119, 204, 0.5);
    background: linear-gradient(135deg, #0088ee 0%, var(--color-accent) 100%);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.85);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: white;
    color: var(--color-primary);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   QUIÉNES SOMOS (WHO WE ARE)
   ========================================================================== */
.who-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.who-logo-focal {
    height: 330px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    transition: var(--transition-smooth);
}

.who-we-are {
    display: block;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.text-side h2 {
    font-size: var(--fs-h2);
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.text-side h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
}

.text-side p {
    font-size: 1.08rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: center;
}

/* Reset image visual styles for clean logo displaying */
.logo-clean {
    max-width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    transition: none !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

.logo-clean:hover {
    transform: none !important;
    box-shadow: none !important;
}

@media (max-width: 992px) {
    .who-logo-row {
        margin-bottom: 30px;
    }
    
    .who-logo-focal {
        height: 220px;
    }
}

/* ==========================================================================
   MOMENTS SLIDESHOW
   ========================================================================== */
.moments-slideshow {
    position: relative;
    max-width: 900px;
    height: 500px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.moments-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.moment-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.2s ease-in-out;
}

.moment-slide.active {
    opacity: 1;
    z-index: 2;
}

.moment-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.moment-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 32, 66, 0.95) 0%, rgba(15, 32, 66, 0) 100%);
    padding: 45px 30px 30px;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    z-index: 3;
    letter-spacing: 0.5px;
}

.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slideshow-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slideshow-dot.active {
    background: white;
    transform: scale(1.25);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .moments-slideshow {
        height: 350px;
    }
    .moment-caption {
        font-size: 1.15rem;
        padding: 30px 20px 20px;
    }
}

/* ==========================================================================
   DONACIONES (DONATIONS CARD SYSTEM)
   ========================================================================== */
.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.donation-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 32, 66, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 300px;
    transition: var(--transition-smooth);
}

.donation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 119, 204, 0.12);
    border-color: rgba(0, 119, 204, 0.15);
}

.donation-card img {
    height: 64px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.donation-card:hover img {
    transform: scale(1.05);
}

.donation-card h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 25px;
}

.open-modal-btn {
    width: 100%;
    padding: 12px 24px;
    background: var(--color-bg-light);
    border: 1.5px solid rgba(15, 32, 66, 0.06);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    color: var(--color-primary-light);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.donation-card:hover .open-modal-btn {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(0, 119, 204, 0.2);
}

/* ==========================================================================
   BANK DETAILS MODAL (BLUR BACKDROP)
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 32, 66, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: var(--transition-smooth);
}

.modal-content {
    background: var(--color-bg-white);
    max-width: 580px;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    opacity: 0;
}

/* Modal Open State Animations */
.modal[style*="display: flex"] {
    animation: modalBgFadeIn 0.3s ease forwards;
}

.modal[style*="display: flex"] .modal-content {
    animation: modalContentScaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modalBgFadeIn {
    from { background: rgba(15, 32, 66, 0); backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px); }
    to { background: rgba(15, 32, 66, 0.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
}

@keyframes modalContentScaleIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(15px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 28px;
    color: var(--color-text-muted);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--color-text-main);
    transform: rotate(90deg);
}

.modal-title {
    text-align: center;
    padding: 30px 30px 10px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.modal-full-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    display: block;
    object-fit: contain;
    padding: 10px 30px 30px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ==========================================================================
   DEVELOPMENT AREAS GRID & CTA (IN MAIN FOR GENERAL COMPATIBILITY)
   ========================================================================== */
.max-600 {
    max-width: 600px;
    margin: 0 auto 3.5rem;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.area-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 32, 66, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 119, 204, 0.15);
}

.area-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.area-card:hover .area-image img {
    transform: scale(1.08);
}

.area-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.area-content h3 {
    color: var(--color-primary);
    font-size: 1.35rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.area-content p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* Call-to-action Banners */
.cta-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 80px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
}

.cta-banner h3 {
    color: white;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-banner p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-center {
    text-align: center;
    margin-top: 70px;
}

.cta-center .btn-primary {
    padding: 16px 44px;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
    .area-image {
        height: 200px;
    }
    .cta-banner {
        padding: 40px 24px;
    }
    .cta-banner h3 {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 90px 0 40px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
}

.footer h3 {
    color: white;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer p {
    line-height: 1.7;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer p i {
    color: var(--color-accent);
    margin-right: 10px;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.footer-logo {
    height: 135px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
}

.footer-logo:hover {
    opacity: 0.85;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

.social-footer {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.social-footer a {
    color: white;
    background: rgba(255, 255, 255, 0.08);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-footer a:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 119, 204, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 70px;
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ==========================================================================
   GENERAL TWO-COLUMN RESPONSIVE LAYOUT FOR MEDIA
   ========================================================================== */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-column img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.image-column img:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}