* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    color: #111111;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    background-color: rgba(13, 17, 37, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    color: #e4bd0f;
    font-size: 28px;
    font-weight: 700;
}

/* Main Content */
.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.hero-section {
    text-align: center;
    max-width: 900px;
    animation: fadeInDown 0.8s ease-out;
}

.company-name {
    font-size: 90px;
    color: #2b7a3a;
    font-weight: 900;
    margin-bottom: 10px;
}

.main-title {
    font-size: 64px;
    color: #e4bd0f;
    font-weight: 800;
    margin-bottom: 30px;
}

.description {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 50px;
}

.contact-block p {
    font-size: 15px;
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background-color: #fafafa;
    border-top: 1px solid #eeeeee;
    padding: 25px 20px;
    text-align: center;
    color: #333333;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .company-name {
        font-size: 56px;
    }

    .main-title {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 40px;
    }

    .main-title {
        font-size: 30px;
    }

    .logo {
        font-size: 20px;
    }
}
