:root {
    --primary: #1a1a1a;
    /* Dark gray for text */
    --accent: #00bcd4;
    /* Fresh Cyan accent */
    --bg-white: #ffffff;
    /* Pure white background */
    --bg-light: #f9f9f9;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    background-color: var(--bg-white);
    color: var(--primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Header / Logo */
header {
    padding: 4rem 0 2rem;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.logo-img {
    height: 120px;
    /* Larger logo */
    width: auto;
    transition: var(--transition);
}

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

/* Typography */
.informative-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #555;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.2s;
}

.intro-highlight {
    color: var(--accent);
    font-weight: 800;
}

/* Hero Image Section */
.hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 4rem;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 900px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeIn 1.5s forwards 0.4s;
    background: var(--bg-light);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(1.1);
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #eee;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 3rem 0 1rem;
    }

    .logo-img {
        height: 90px;
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}