/* ==================== ROOT VARIABLES ==================== */
:root {
    --cosmic-black: #0a0a0f;
    --space-dark: #151520;
    --nebula-purple: #2d2445;
    --off-white: #f8f6f3;
    --cream: #ede9e3;
    --gold-accent: #d4af37;
    --star-white: #ffffff;
    --text-muted: #b8b4ab;
}

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

html {
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--cosmic-black);
    color: var(--off-white);
    overflow-x: hidden;
    line-height: 1.7;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* ==================== STAR BACKGROUND ==================== */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 60px 70px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 50px 50px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 90px 10px, rgba(255, 255, 255, 0.5), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 8s ease-in-out infinite;
}

.stars.layer2 {
    background-image: 
        radial-gradient(1px 1px at 40px 60px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 110px 20px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 70px 100px, rgba(255, 255, 255, 0.7), transparent);
    background-size: 250px 250px;
    animation: twinkle 6s ease-in-out infinite reverse;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.shooting-star {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
    animation: shoot 3s ease-in-out infinite;
}

@keyframes shoot {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(1000px) translateY(500px);
        opacity: 0;
    }
}

/* ==================== NAVIGATION ==================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(10, 10, 15, 0.98);
    padding: 1rem 4rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--off-white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 300;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-accent);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh; /* iOS Safari support */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    z-index: 1;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    width: 100%;
    align-items: center;
    box-sizing: border-box;
}

.hero-text {
    animation: fadeInUp 1.2s ease-out;
}

.sanskrit-text {
    font-size: 1.2rem;
    color: var(--gold-accent);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.3s forwards;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.5s forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.7s forwards;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.9s forwards;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 1.1s forwards;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-accent);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--cosmic-black);
}

.cta-button:hover::before {
    left: 0;
}

/* ==================== HERO IMAGES LAYOUT ==================== */
.hero-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.6s forwards;
    width: 100%;
    max-width: 100%;
}

/* Main Profile Image */
.hero-image {
    position: relative;
    flex: 1;
    max-width: 400px;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    overflow: visible;
}


.image-wrapper::before,
.image-wrapper::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.8);
    z-index: 1;
}

.image-wrapper::before {
    top: 10%;
    right: 5%;
    animation: twinkle-dot 3s ease-in-out infinite;
}

.image-wrapper::after {
    bottom: 15%;
    left: 8%;
    animation: twinkle-dot 3s ease-in-out infinite 1.5s;
}

@keyframes twinkle-dot {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.cosmic-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: 
        rotate 20s linear infinite,
        pulse-glow 4s ease-in-out infinite;
    will-change: transform;
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.2),
        inset 0 0 20px rgba(212, 175, 55, 0.1);
    aspect-ratio: 1 / 1;
}

.cosmic-circle::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--gold-accent);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

.cosmic-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-reverse {
    0% { transform: translate(-50%, -50%) rotate(360deg); }
    100% { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(212, 175, 55, 0.2),
            inset 0 0 20px rgba(212, 175, 55, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 40px rgba(212, 175, 55, 0.4),
            inset 0 0 30px rgba(212, 175, 55, 0.2);
    }
}

.profile-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--gold-accent);
    box-shadow: 
        0 0 40px rgba(212, 175, 55, 0.4),
        0 0 80px rgba(212, 175, 55, 0.2),
        0 10px 50px rgba(0, 0, 0, 0.5);
    z-index: 2;
    display: block;
    backface-visibility: hidden;
    aspect-ratio: 1 / 1;
}

/* Secondary Image */
.secondary-image {
    position: relative;
    flex: 0.8;
    max-width: 300px;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.image-wrapper-secondary {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    overflow: visible;
}

.image-wrapper-secondary::before,
.image-wrapper-secondary::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
    z-index: 1;
}

.image-wrapper-secondary::before {
    top: 20%;
    left: 10%;
    animation: twinkle-dot 4s ease-in-out infinite;
}

.image-wrapper-secondary::after {
    bottom: 20%;
    right: 10%;
    animation: twinkle-dot 4s ease-in-out infinite 2s;
}

.cosmic-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 15px);
    height: calc(100% + 15px);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: 
        rotate-reverse 15s linear infinite,
        pulse-glow 5s ease-in-out infinite 1s;
    will-change: transform;
    box-shadow: 
        0 0 15px rgba(212, 175, 55, 0.2),
        inset 0 0 15px rgba(212, 175, 55, 0.1);
    aspect-ratio: 1 / 1;
}

.cosmic-ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes rotate-reverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

.chart-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(212, 175, 55, 0.7);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.3),
        0 0 60px rgba(212, 175, 55, 0.15),
        0 8px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
    display: block;
    backface-visibility: hidden;
    aspect-ratio: 1 / 1;
}

/* ==================== SECTION STYLES ==================== */
section {
    position: relative;
    padding: 6rem 2rem;
    z-index: 1;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gold-accent);
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ==================== ABOUT SECTION ==================== */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--cream);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--gold-accent);
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    padding: 2rem;
    background: rgba(45, 36, 69, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(45, 36, 69, 0.5);
    border-color: var(--gold-accent);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--gold-accent);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    background: linear-gradient(180deg, var(--cosmic-black) 0%, var(--nebula-purple) 50%, var(--cosmic-black) 100%);
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: rgba(21, 21, 32, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem;
    border-radius: 15px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.1);
    font-family: 'Cinzel', serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-accent);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-accent), var(--nebula-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--cosmic-black);
    font-weight: 600;
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--gold-accent);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
}

.stars-rating {
    margin-bottom: 1.5rem;
    color: var(--gold-accent);
    font-size: 1.2rem;
}

/* ==================== CONTACT SECTION ==================== */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-text {
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-card {
    padding: 2.5rem 3rem;
    background: rgba(21, 21, 32, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    min-width: 280px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-accent);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.3rem;
    color: var(--gold-accent);
    font-weight: 500;
}

/* ==================== FOOTER ==================== */
footer {
    position: relative;
    padding: 3rem 4rem;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1;
}

.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.footer-text span {
    color: var(--gold-accent);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.parallax-element {
    transition: transform 0.1s ease-out;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablets and smaller desktops */
@media (max-width: 1200px) {
    .hero {
        padding: 0 2rem;
    }

    .hero-content {
        gap: 3rem;
    }
    
    .hero-images {
        flex-direction: column;
        gap: 2rem;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .hero-image,
    .secondary-image {
        max-width: 350px;
        width: 100%;
    }
}

/* Tablets */
@media (max-width: 968px) {
    nav {
        padding: 1.5rem 2rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero {
        min-height: auto;
        padding: 6rem 1.5rem 4rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-images {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-image {
        max-width: 220px;
    }

    .secondary-image {
        max-width: 180px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile devices */
@media (max-width: 640px) {
    nav {
        padding: 1rem 1rem;
    }

    .logo {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 5rem 1rem 3rem;
        min-height: auto;
    }

    .hero-content {
        gap: 2rem;
    }

    .sanskrit-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
    }

    .hero-images {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-image,
    .secondary-image {
        max-width: 100%;
        width: 100%;
    }

    /* Ensure images are visible */
    .profile-image,
    .chart-image {
        display: block;
        width: 100%;
        height: 100%;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .about-text {
        font-size: 1.1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card::before {
        font-size: 5rem;
        left: 1rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .author-info h4 {
        font-size: 1.1rem;
    }

    .contact-methods {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .contact-card {
        width: 100%;
        min-width: auto;
        padding: 2rem 1.5rem;
    }

    .contact-text {
        font-size: 1.1rem;
    }

    footer {
        padding: 2rem 1rem;
    }

    .footer-text {
        font-size: 0.85rem;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-images {
        max-width: 240px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
    
    body {
        min-height: -webkit-fill-available;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 3rem 1.5rem;
    }

    .hero-images {
        flex-direction: row;
        gap: 1.5rem;
    }

    .hero-image,
    .secondary-image {
        max-width: 200px;
    }

    section {
        padding: 3rem 1.5rem;
    }
}