:root {
    --primary-bg: #E0E7FF;
    --accent-1: #6A79F7;
    --accent-2: #8E9BFF;
    --accent-3: #CAD6F7;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --white: #ffffff;
    --border-color: #ddd;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-1);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

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

header .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-1);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

header .logo:hover {
    color: var(--accent-2);
}

header nav a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
    position: relative;
}

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

header nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-1);
    transition: width 0.3s ease;
}

header nav a:hover::after {
    width: 100%;
}

main {
    margin-top: 80px;
}

section {
    padding: 80px 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-block {
    position: relative;
    height: 500px;
    background-image: url('images/hero-landscape.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    padding: 80px 2rem;
}

.hero-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(224, 231, 255, 0.7);
    z-index: 1;
}

.hero-block .hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-dark);
    max-width: 900px;
}

.hero-block h1 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-block p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.two-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.three-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.card:hover {
    box-shadow: 0 8px 16px rgba(106, 121, 247, 0.15);
    transform: translateY(-2px);
    border-color: var(--accent-1);
}

.card h3 {
    margin-bottom: 1rem;
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.8;
}

.section-accent {
    background-color: var(--primary-bg);
    padding: 80px 2rem;
}

.text-center {
    text-align: center;
}

.disclaimer-box {
    background-color: #f9f9f9;
    border-left: 4px solid var(--accent-1);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent-1);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-1);
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: var(--accent-2);
    border-color: var(--accent-2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 121, 247, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-1);
}

.btn-secondary:hover {
    background-color: var(--accent-1);
    color: var(--white);
}

footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 4rem 2rem;
    margin-top: 4rem;
}

footer .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

footer h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

footer a {
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

footer .footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

footer p {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(106, 121, 247, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 2px solid var(--primary-bg);
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner.hidden {
    display: none !important;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-light);
}

.cookie-text a {
    color: var(--accent-1);
    text-decoration: none;
    font-weight: 600;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-1);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background-color: var(--accent-2);
}

.cookie-btn-reject {
    background-color: transparent;
    color: var(--accent-1);
    border: 1px solid var(--accent-1);
}

.cookie-btn-reject:hover {
    background-color: var(--accent-1);
    color: var(--white);
}

.success-message {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.success-message h1 {
    color: var(--accent-1);
    margin-bottom: 1rem;
}

.success-message p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    header .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    header nav a {
        margin-left: 1rem;
    }

    section {
        padding: 40px 1rem;
    }

    .hero-block {
        height: 300px;
        padding: 40px 1rem;
    }

    .hero-block h1 {
        font-size: 1.5rem;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .three-column-grid {
        grid-template-columns: 1fr;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}
