/* Hero Section */
.hero-section {
    height: 80vh;
    background: url('../images/mountains-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    background: linear-gradient(to right, rgba(13, 35, 68, 0.8), transparent);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.hero-container h1 {
    color: white;
    font-size: 2.5rem;
    max-width: 600px;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.btn-more {
    background: var(--accent-blue);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Grid для інфо-блоків */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 50px 10%;
    background: var(--background);
}

.info-item h3 {
    color: white;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.info-item p {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

/* Картки новин */
.news-section { padding: 50px 10%; }
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.news-card {
    background: var(--secondary-background);
    border-radius: 15px;
    overflow: hidden;
}
.news-card img { width: 100%; height: 200px; object-fit: cover; }
.news-card-content { padding: 15px; color: white; }