:root {
    --color-primary: #0D1B2A;
    --color-accent: #E0B84A;
    --color-secondary: #D1D5DB;
    --color-highlight: #4DA8DA;
    --color-neutral: #F8FAFC;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-neutral);
    color: var(--color-primary);
    line-height: 1.6;
}

h1, h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero {
    background-color: var(--color-primary);
    color: var(--color-neutral);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo-container {
    animation: fadeIn 1s ease-out;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 500px;
    height: 500px;
    margin-bottom: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-indicator p {
    color: var(--color-accent);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.arrow-down {
    width: 24px;
    height: 24px;
    border-right: 3px solid var(--color-accent);
    border-bottom: 3px solid var(--color-accent);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

.logo-container h1 {
    font-size: 3.5rem;
    margin-top: 1rem;
    color: var(--color-accent);
}

/* Vision & Mission Section */
.vision-mission {
    background-color: var(--color-neutral);
    padding: 4rem 0;
}

.vision, .mission {
    margin-bottom: 3rem;
}

.vision-mission h2 {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.vision-mission p {
    font-size: 1.2rem;
    max-width: 800px;
}

/* Values Section */
.values {
    background-color: var(--color-primary);
    color: var(--color-neutral);
    padding: 4rem 0;
}

.values h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-accent);
}

.values ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.values li {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: transform 0.2s;
}

.values li:hover {
    transform: translateY(-5px);
}

blockquote {
    text-align: center;
    font-style: italic;
    max-width: 800px;
    margin: 3rem auto;
    color: var(--color-secondary);
}

blockquote footer {
    margin-top: 1rem;
    color: var(--color-accent);
}

/* Footer */
.site-footer {
    background-color: var(--color-neutral);
    padding: 2rem 0;
    text-align: center;
}

.site-footer a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.site-footer a:hover {
    color: var(--color-highlight);
}

.website {
    margin-top: 0.5rem;
    color: var(--color-secondary);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container h1 {
        font-size: 2.5rem;
    }

    .values ul {
        flex-direction: column;
        align-items: center;
    }

    .values li {
        width: 80%;
        text-align: center;
    }

    .vision-mission p {
        font-size: 1.1rem;
    }
}