/* Container */
.container {
    max-width: 1200px;
    width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    background: linear-gradient(180deg, #f5f7f6 0%, #fff 100%);
    box-sizing: border-box;
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 0;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-text-section {
    background: #fff;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-50px);
}

.hero-text-section h1 {
    font-size: 2rem;
    color: #005b2e;
    margin: 0 0 0.5rem 0;
    font-family: Arial, sans-serif;
    font-weight: 700;
}

.hero-text-section p {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 1.5rem 0;
    font-family: Arial, sans-serif;
}

/* Tariffs Section */
.tariffs-section {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.tariffs-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
}

.tariffs-list li {
    margin-bottom: 1rem;
}

.tariff-link {
    font-size: 1.2rem;
    color: #004022;
    text-decoration: none;
    font-family: Arial, sans-serif;
    transition: color 0.3s ease;
    word-wrap: break-word;
}

.tariff-link:hover {
    color: #005b2e;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
        margin: 0;
    }

    .hero-section {
        height: 60vh;
        min-height: 400px;
        border-radius: 10px;
    }

    .hero-text-section {
        padding: 1.5rem;
        max-width: 90%;
        transform: translateY(-40px);
    }

    .hero-text-section h1 {
        font-size: 1.9rem;
    }

    .hero-text-section p {
        font-size: 1.1rem;
    }

    .tariffs-section {
        padding: 1.5rem;
        border-radius: 10px;
        margin: 2rem 0;
    }

    .tariff-link {
        font-size: 1.1rem;
    }

    .tariffs-list {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text-section {
        transform: translateY(-30px);
        padding: 1.2rem;
    }

    .hero-text-section h1 {
        font-size: 1.7rem;
    }

    .hero-text-section p {
        font-size: 1rem;
    }

    .tariffs-section {
        padding: 1.2rem;
    }

    .tariff-link {
        font-size: 1.05rem;
    }
}