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

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.7;
    color: #0f2d3d;
    background-color: #faf8f5;
    padding-top: 70px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: linear-gradient(90deg, #0f2d3d 0%, #1e4d6b 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    box-shadow: 0 4px 14px rgba(15,45,61,0.25);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #f0e6d8;
    text-decoration: none;
    letter-spacing: 0.02em;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

nav a {
    color: #f0e6d8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: #c4a574;
}

.hero {
    background-color: #0f2d3d;
    color: #f0e6d8;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.28;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.hero h1 {
    font-size: clamp(1.75rem, 4.5vw, 2.4rem);
    margin-bottom: 16px;
    font-weight: 700;
}

.hero p {
    font-size: 1.08rem;
    opacity: 0.92;
}

.section {
    padding: 52px 0;
}

.section-alt {
    background-color: #ffffff;
    box-shadow: 0 1px 0 rgba(30,77,107,0.08);
}

.content-block h2 {
    font-size: 1.7rem;
    color: #1e4d6b;
    margin-bottom: 22px;
    font-weight: 700;
}

.content-block h3 {
    font-size: 1.28rem;
    color: #0f2d3d;
    margin: 24px 0 14px;
    font-weight: 700;
}

.content-block p {
    margin-bottom: 16px;
    color: #2a3d47;
}

.image-block {
    margin: 28px 0;
}

.image-block img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 28px 0;
}

.image-grid img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
}

.limitations-block {
    background-color: #f0e6d8;
    padding: 30px 28px;
    border-radius: 6px;
    margin: 36px 0;
    border-left: 5px solid #c4a574;
}

.limitations-block h2 {
    color: #0f2d3d;
}

.cta-soft {
    text-align: center;
    padding: 48px 24px;
    background: linear-gradient(180deg, #1e4d6b 0%, #0f2d3d 100%);
    color: #ffffff;
}

.cta-soft a {
    color: #c4a574;
    text-decoration: underline;
}

.cta-soft a:hover {
    color: #f0e6d8;
}

footer {
    background-color: #0f2d3d;
    color: #f0e6d8;
    padding: 40px 0 28px;
    margin-top: 52px;
}

footer a {
    color: #f0e6d8;
    text-decoration: underline;
}

footer a:hover {
    color: #c4a574;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto 28px;
    padding: 0 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(240,230,216,0.25);
    font-size: 0.92rem;
}

#cookieBanner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0f2d3d;
    color: #f0e6d8;
    padding: 22px 28px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
    z-index: 9999;
}

#cookieBanner.active {
    display: block;
}

.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.cookie-banner-inner p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}

.cookie-banner-inner a {
    color: #c4a574;
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cookie-btns button {
    padding: 11px 22px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

#acceptCookies {
    background-color: #c4a574;
    color: #0f2d3d;
}

#rejectCookies {
    background-color: transparent;
    color: #f0e6d8;
    border: 1px solid #f0e6d8;
}

#cookieInfo {
    background-color: #f0e6d8;
    color: #0f2d3d;
}

.form-container {
    max-width: 540px;
    margin: 28px 0;
}

.form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0f2d3d;
}

.form-container input,
.form-container textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #1e4d6b;
    border-radius: 4px;
    font-size: 1rem;
    margin-bottom: 18px;
}

.form-container textarea {
    min-height: 130px;
    resize: vertical;
}

.btn-submit {
    background-color: #1e4d6b;
    color: #f0e6d8;
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #0f2d3d;
    color: #ffffff;
}

.disclaimer-box {
    background-color: #f0e6d8;
    padding: 22px 26px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 5px solid #c4a574;
}

.disclaimer-box p {
    margin-bottom: 10px;
}

.section-title {
    font-size: 1.9rem;
    color: #1e4d6b;
    margin-bottom: 28px;
    font-weight: 700;
}

.page-section {
    padding-top: 104px;
    padding-bottom: 52px;
}

@media (max-width: 768px) {
    body {
        padding-top: 62px;
    }
    .hero {
        padding: 64px 24px;
        min-height: 300px;
    }
    nav ul {
        gap: 18px;
    }
    .section {
        padding: 40px 0;
    }
}
