/* Color scheme: #FFDE5A, #FFD35F, #F0E68C */
:root {
    --primary: #FFDE5A;
    --primary-dark: #FFD35F;
    --secondary: #F0E68C;
    --text-color: #333333;
    --bg-color: #FFFFFF;
    --bg-light: #FAFAFA;
    --font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

/* Header */
.main-header {
    background: var(--bg-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
}
.main-nav {
    display: flex;
    gap: 20px;
}
.main-nav a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary);
    color: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
    text-align: center;
}
.btn:hover {
    background-color: var(--primary-dark);
}
.btn-large {
    padding: 15px 30px;
    font-size: 18px;
}
.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background-color: var(--primary);
}
.btn-full {
    width: 100%;
}

/* Banner */
.banner {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.banner-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
}
.banner-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
}
.banner-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Block Split */
.block-split {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 80px 20px;
}
.block-split.reverse {
    flex-direction: row-reverse;
}
.split-image {
    flex: 1;
}
.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.split-text {
    flex: 1;
}
.split-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-color);
}
.split-text p {
    margin-bottom: 15px;
}
.split-text ul {
    list-style-position: inside;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonial {
    background: var(--bg-light);
    padding: 20px;
    border-left: 4px solid var(--primary);
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
}

/* Accordion */
.block-accordion {
    padding: 80px 20px;
}
.block-accordion h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}
.accordion-item {
    border-bottom: 1px solid #ddd;
}
.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-color);
}
.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.accordion-item.active .accordion-content {
    max-height: 300px;
    padding-bottom: 20px;
}

/* Table */
.block-table {
    padding: 80px 20px;
}
.block-table h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}
.table-responsive {
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
}
th {
    background-color: var(--primary);
    color: #333;
}

/* Cards */
.block-cards {
    padding: 80px 20px;
}
.block-cards h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}
.card h3 {
    margin-bottom: 15px;
}
.card .price {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-dark);
    margin-bottom: 15px;
}
.card ul {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}
.card ul li {
    margin-bottom: 10px;
}

/* Text Only + Form */
.block-text {
    padding: 80px 20px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.text-content {
    flex: 1;
    min-width: 300px;
}
.text-content h2 {
    margin-bottom: 20px;
    font-size: 32px;
}
.form-container {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.form-container h3 {
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}
.form-disclaimer {
    margin-top: 15px;
    font-size: 12px;
    color: #666;
    text-align: center;
}
.form-disclaimer a {
    text-decoration: underline;
}

/* Footer */
.main-footer {
    background: #333;
    color: white;
    padding: 60px 20px 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.main-footer a {
    color: #ccc;
}
.main-footer a:hover {
    color: var(--primary);
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.icon {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    padding: 5px;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    font-size: 14px;
    color: #aaa;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 20px;
    border-top: 4px solid var(--primary);
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cookie-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-content {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}
.legal-content h1 {
    margin-bottom: 30px;
    color: var(--text-color);
}
.legal-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}
.legal-content p {
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .block-split {
        flex-direction: column;
        padding: 40px 20px;
    }
    .block-split.reverse {
        flex-direction: column;
    }
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 15px;
    }
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .banner {
        height: 400px;
    }
    .banner-content h1 {
        font-size: 28px;
    }
}