:root {
    --primary: #8CCB5E;
    --primary-hover: #7ab551;
    --secondary: #DD80CC;
    --tertiary: #ACB78E;
    --accent: #DAD871;
    --bg-light: #f9fbf8;
    --text-main: #333;
    --text-muted: #666;
    --white: #fff;
    --radius: 8px;
    --shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    padding-top: 70px;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-light {
    background-color: var(--bg-light);
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Typography */
h1, h2, h3 {
    color: var(--tertiary);
    margin-bottom: 20px;
    line-height: 1.3;
}

h1 { font-size: 3rem; color: var(--white); }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 40px; }
h3 { font-size: 1.5rem; }

p, ul { margin-bottom: 20px; }
ul { padding-left: 20px; }
li { margin-bottom: 10px; }

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-small { padding: 8px 16px; font-size: 0.9rem; }
.btn-outline { background-color: transparent; border: 1px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background-color: var(--primary); color: var(--white); }
.btn-text { background-color: transparent; color: var(--text-muted); }
.btn-text:hover { background-color: transparent; color: var(--text-main); text-decoration: underline; transform: none; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
}

.nav a {
    color: var(--text-main);
    margin-left: 20px;
    font-weight: 500;
}

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

/* Banner */
.banner {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.banner-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.banner-content p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 30px;
}

/* Content Blocks */
.content-block {
    padding: 80px 20px;
}

.block-img-text, .block-text-img {
    display: flex;
    align-items: center;
    gap: 50px;
}

.block-text-img {
    flex-direction: row-reverse;
}

.block-img {
    flex: 1;
}

.block-img img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: block;
}

.block-text {
    flex: 1;
}

.block-text h2 {
    text-align: left;
}

/* Accordions */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion {
    background-color: var(--white);
    color: var(--text-main);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: 1px solid #eee;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s;
    border-radius: var(--radius);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion::after {
    content: '+';
    color: var(--primary);
    font-size: 1.5rem;
}

.accordion.active::after {
    content: '\2212'; /* minus sign */
}

.accordion:hover {
    background-color: var(--bg-light);
}

.accordion-content {
    padding: 0 18px;
    background-color: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    margin-bottom: 10px;
    border-radius: 0 0 var(--radius) var(--radius);
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
}

th, td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: var(--tertiary);
    color: var(--white);
    font-weight: 600;
}

tr:hover {
    background-color: var(--bg-light);
}

/* Cards */
.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 5px solid var(--primary);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-featured {
    border-top-color: var(--secondary);
    transform: scale(1.05);
}

.card-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.card h3 {
    margin-bottom: 15px;
}

.card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-main);
    margin-bottom: 15px;
}

.card .desc {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Text Only */
.block-text-only {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Form */
.subscription-section {
    background-color: var(--accent);
    padding: 80px 20px;
}

.subscription-section h2 {
    color: var(--text-main);
}

.subscription-form {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary);
}

.btn-submit {
    width: 100%;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: var(--tertiary);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    color: var(--white);
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-info a {
    color: var(--white);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.footer-social a:hover img {
    transform: scale(1.1);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content {
    flex: 1;
    min-width: 300px;
}

.cookie-options {
    margin-top: 15px;
    display: flex;
    gap: 20px;
}

.cookie-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .block-img-text, .block-text-img {
        flex-direction: column;
    }
    
    .card-featured {
        transform: none;
    }
    
    .card-featured:hover {
        transform: translateY(-5px);
    }
    
    .nav {
        display: none;
    }
    
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}