:root {
    --primary: #d90429;
    --primary-hover: #ff2a3c;
    --background: #f4f6f8;
    --header-bg: #0d1b3f;
    --card-bg: #858080;
    --card-hover: #922f22;
    --text-main: #f0f0f0;
    --text-muted: #f8f2f2;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    background: var(--background);
    color: #212529;
    line-height: 1.7;
}


header {
    background: linear-gradient(135deg, var(--header-bg), #081233);
    color: var(--text-main);
    padding: 50px 20px;
    text-align: center;
    border-bottom: 4px solid var(--primary);
}

.info-badge {
    background: var(--primary);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8em;
    font-weight: bold;
    margin-bottom: 15px;
}

nav {
    margin-top: 25px;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    font-size: 0.9em;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-hover);
}


.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 3fr 1.2fr;
    gap: 30px;
}

@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
    }
}


.hero-full {
    grid-column: 1 / -1;
    background: url("https://images.unsplash.com/photo-1544919375-7ef3997f3743?q=80&w=2070") no-repeat center center;
    background-size: cover;
    padding: 80px 40px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.hero-text {
    background: var(--card-bg);
    display: inline-block;
    padding: 30px 40px;
    border-radius: 15px;
    max-width: 800px;
    color: var(--text-main);
    text-align: center;
}


.section-title {
    font-size: 2em;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    color: var(--header-bg);
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin-top: 10px;
    border-radius: 4px;
}


.card {
    background: var(--card-bg);
    color: var(--text-main);
    padding: 30px;
    border-radius: 16px;
    border-left: 6px solid var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.4em;
    color: var(--text-main);
}

.card p,
.card li {
    color: var(--text-muted);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: var(--card-hover);
}


.img-box {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
}

.img-box img,
.img-fluid {
    width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}


.sidebar .card {
    font-size: 0.95em;
}

.facts ul {
    padding-left: 18px;
}

.facts li {
    margin-bottom: 8px;
}


footer {
    background: var(--header-bg);
    color: var(--text-main);
    text-align: center;
    padding: 30px 20px;
    margin-top: 80px;
}

footer p {
    margin: 0;
    font-size: 1em;
}


@media (max-width: 600px) {
    header h1 {
        font-size: 1.5rem;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}