:root {
    --color-primary: #7BD3C7;
    --color-accent-warm: #F4E4BC;
    --color-accent-green: #3A6B4E;
    --color-light-gray: #F0F4F8;
    --color-white: #FFFFFF;
    --color-dark: #1a1a1a;
    --color-text: #2c3e50;
    --spacing-unit: 16px;
}

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

html, body {
    font-family: 'Inter', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16.5px;
    line-height: 1.75;
    letter-spacing: 0.2px;
    color: var(--color-text);
    background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Futura', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

p {
    margin-bottom: 16px;
}

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

a:hover {
    color: var(--color-accent-green);
    text-decoration: underline;
}

body {
    padding-top: 60px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    width: 40px;
    height: 40px;
}

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

nav a {
    font-weight: 500;
    color: var(--color-text);
    font-size: 15px;
}

nav a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
}

section:nth-child(even) {
    background: var(--color-light-gray);
}

.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(123, 211, 199, 0.8) 100%);
    color: var(--color-white);
    padding: 120px 40px;
    text-align: center;
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: 24px;
    font-size: 52px;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.two-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.two-column:nth-child(even) {
    direction: rtl;
}

.two-column:nth-child(even) > * {
    direction: ltr;
}

.card {
    background: var(--color-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), #5fc4b8);
    color: var(--color-white);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn:hover {
    background: linear-gradient(135deg, var(--color-accent-green), #2d5a3d);
    color: var(--color-white);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(123, 211, 199, 0.3);
}

footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 60px 40px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--color-primary);
    font-size: 18px;
    margin-bottom: 16px;
}

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

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ddd;
    font-size: 14px;
    cursor: pointer;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.accordion {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 16px;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    padding: 20px;
    background: var(--color-light-gray);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #e8f1f0;
}

.accordion-content {
    padding: 20px;
    display: none;
    background: var(--color-white);
}

.accordion-content.show {
    display: block;
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 16px;
    text-align: left;
    font-weight: 600;
}

td {
    padding: 16px;
    border-bottom: 1px solid #ddd;
}

tr:nth-child(even) {
    background: var(--color-light-gray);
}

form {
    background: var(--color-light-gray);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-dark);
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(123, 211, 199, 0.1);
}

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

.disclaimer {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 16px;
    margin: 24px 0;
    font-size: 14px;
    color: #856404;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--color-dark);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    margin-right: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.cookie-decline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.info-list {
    list-style: none;
    margin: 20px 0;
}

.info-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.info-list li:before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.section-intro {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 40px;
    line-height: 1.8;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: none;
}

.success-message.show {
    display: block;
}

@media (max-width: 768px) {
    nav ul {
        gap: 16px;
    }

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

    .cards-grid {
        grid-template-columns: 1fr;
    }

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

    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    section {
        padding: 60px 20px;
    }

    .container {
        padding: 0 20px;
    }

    .header-content {
        padding: 12px 20px;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 16px 20px;
    }

    .cookie-text {
        margin-right: 0;
        margin-bottom: 12px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
