@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Source+Serif+Pro:wght@400;600;700;900&display=swap');

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

:root {
    --primary-color: #4a4a4a;
    --primary-dark: #2d2d2d;
    --primary-light: #6b6b6b;
    --accent-color: #e91e63;
    --accent-light: #f06292;
    --bg-light: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Serif Pro', serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.1rem;
    line-height: 1.35;
}

h1 {
    font-size: 2.6rem;
    margin-bottom: 1.6rem;
}

h2 {
    font-size: 2.1rem;
    margin-top: 2.2rem;
    margin-bottom: 1.1rem;
}

h3 {
    font-size: 1.7rem;
    margin-top: 1.8rem;
    margin-bottom: 0.9rem;
}

h4 {
    font-size: 1.4rem;
    margin-top: 1.4rem;
    margin-bottom: 0.7rem;
}

p {
    margin-bottom: 1.1rem;
    font-size: 16px;
    line-height: 1.65;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

.header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 52px;
    width: auto;
}

.nav {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav li {
    position: relative;
}

.nav a {
    color: var(--white);
    font-weight: 500;
    padding: 0.55rem 0;
    display: block;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav a:hover {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.08);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 1.3rem;
}

.banner p {
    font-size: 1.25rem;
    margin-bottom: 2.2rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.main-content {
    padding: 3.5rem 0;
    background-color: var(--bg-light);
}

.content-section {
    background-color: var(--white);
    padding: 2.2rem;
    margin-bottom: 2.2rem;
    border-radius: 11px;
    box-shadow: 0 2px 7px rgba(0,0,0,0.07);
    border-left: 4px solid var(--accent-color);
}

.content-section h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.7rem;
    margin-bottom: 1.6rem;
}

.content-section h3 {
    color: var(--accent-color);
    margin-top: 2.2rem;
}

.content-section ul, .content-section ol {
    margin-left: 2.2rem;
    margin-bottom: 1.1rem;
}

.content-section li {
    margin-bottom: 0.7rem;
    line-height: 1.65;
}

.content-section img {
    max-width: 100%;
    height: auto;
    border-radius: 11px;
    margin: 1.8rem 0;
    display: block;
    box-shadow: 0 3px 11px rgba(0,0,0,0.09);
}

.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 3.5rem 0 1.2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem;
    margin-bottom: 2.2rem;
}

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 1.1rem;
    font-size: 1.15rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1.1rem;
    margin-top: 1.1rem;
}

.social-links a {
    display: inline-block;
    width: 41px;
    height: 41px;
    background-color: #3a3a3a;
    border-radius: 50%;
    text-align: center;
    line-height: 41px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.2rem;
    border-top: 1px solid #3a3a3a;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 13px 32px;
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 125px;
    min-height: 46px;
    font-size: 15px;
}

.btn:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 3px 11px rgba(233,30,99,0.3);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
}

.breadcrumb {
    padding: 1.1rem 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-light);
    margin: 0 0.7rem;
}

.error-page {
    text-align: center;
    padding: 4.5rem 2rem;
}

.error-page h1 {
    font-size: 6.5rem;
    color: var(--primary-color);
    margin-bottom: 1.3rem;
}

.error-page h2 {
    margin-bottom: 1.3rem;
}

.error-page p {
    margin-bottom: 2.2rem;
    font-size: 1.15rem;
}

@media (max-width: 991px) {
    .nav {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 2.2rem;
        transition: left 0.3s ease;
        box-shadow: 2px 2px 8px rgba(0,0,0,0.12);
    }

    .nav.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .banner h1 {
        font-size: 2.3rem;
    }

    .banner p {
        font-size: 1.05rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    h1 {
        font-size: 2.1rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 18px;
    }

    .banner {
        padding: 70px 0;
    }

    .banner h1 {
        font-size: 1.9rem;
    }

    .content-section {
        padding: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 575px) {
    .banner h1 {
        font-size: 1.7rem;
    }

    .banner p {
        font-size: 0.98rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.4rem;
    }
}

