:root {
    --color-saffron: #FF9933;
    --color-white: #FFFFFF;
    --color-green: #138808;
    --color-blue: #000080;
    --color-text-dark: #2c3e50;
    --font-family: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--color-text-dark);
    background-color: var(--color-white);
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.2), rgba(255, 255, 255, 0.3), rgba(0, 0, 128, 0.2));
    z-index: -1;
}

.logo {
    width: 280px;
    height: 70px;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.1));
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: backwards;
    object-fit: contain;
}

.tagline {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: backwards;
}

.content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

.headline {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: backwards;
    background: -webkit-linear-gradient(45deg, var(--color-saffron), var(--color-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-image {
    max-width: 700px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: backwards;
}

.subtext {
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 650px;
    line-height: 1.6;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.8s;
    animation-fill-mode: backwards;
}

.page-footer {
    width: 100%;
    padding: 1.5rem 1rem;
    background: linear-gradient(90deg, var(--color-saffron), var(--color-blue));
    font-size: 0.9rem;
    color: var(--color-white);
    animation: fadeInUp 1s ease-out 1s;
    animation-fill-mode: backwards;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .headline {
        font-size: 3.5rem;
    }
    .subtext {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 240px;
        height: 60px;
    }
    .headline {
        font-size: 2.75rem;
    }
    .subtext {
        font-size: 1rem;
    }
    .page-footer {
        padding: 1.25rem 1rem;
        font-size: 0.85rem;
    }
}