:root {
    --primary-color: #4DB6AC; /* Soft turquoise */
    --primary-light: #80CBC4;
    --primary-dark: #26A69A;
    --secondary-color: #E0F2F1; /* Pastel */
    --text-main: #333333;
    --text-light: #666666;
    --bg-white: #FFFFFF;
    --bg-alternate: #F9FDFD;
    --border-color: #E2E8F0;
    --error-color: #E53E3E;
    
    --font-family: 'Helvetica Neue', Arial, sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
}

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

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

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--bg-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-text {
    background-color: transparent;
    border-color: transparent;
    color: var(--text-light);
}

.btn-text:hover {
    color: var(--primary-color);
    background-color: transparent;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

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

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-list a {
    color: var(--text-main);
    font-weight: 500;
}

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

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    line-height: 1.2;
}

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

.hero-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Block Sections */
.block-section {
    padding: 80px 0;
}

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

.block-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.block-container.reverse {
    flex-direction: row-reverse;
}

.block-text {
    flex: 1;
}

.block-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.block-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.block-text ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.block-text li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.block-image {
    flex: 1;
}

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

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

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    background-color: var(--bg-white);
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.accordion-header.active:after {
    content: '-';
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--bg-white);
}

.accordion-content p {
    padding: 0 20px 20px;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    margin-top: 40px;
}

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

.schedule-table th,
.schedule-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.schedule-table th {
    background-color: var(--primary-light);
    color: var(--bg-white);
    font-weight: 600;
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule-table tbody tr:hover {
    background-color: var(--bg-alternate);
}

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

.price-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.price-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.price-card.highlight {
    border-color: var(--primary-color);
    background-color: var(--secondary-color);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin: 20px 0 30px;
    margin-left: 0;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
    border-bottom: none;
}

/* Text Only Block + Form */
.text-only-block h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.subscription-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.subscription-text {
    flex: 1;
}

.subscription-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.subscription-form-container {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

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

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(77, 182, 172, 0.2);
}

.form-disclaimer {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background-color: var(--bg-alternate);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-main);
}

.review-author {
    font-weight: 600;
    color: var(--primary-dark);
}

/* Footer */
.footer {
    background-color: #2D3748;
    color: #FFFFFF;
    padding: 60px 0 20px;
}

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

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-light);
}

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

.footer-info a {
    color: #CBD5E0;
}

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

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.footer-links ul {
    list-style: none;
    margin-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #CBD5E0;
}

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

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

.social-icon img {
    background-color: #CBD5E0;
    border-radius: 50%;
    padding: 5px;
    transition: var(--transition);
}

.social-icon:hover img {
    background-color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4A5568;
    color: #A0AEC0;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

/* Static Pages Content */
.static-page-section {
    padding: 60px 0 100px;
}

.static-page-section h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.static-page-section h2 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin: 30px 0 15px;
}

.static-page-section p {
    margin-bottom: 15px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 20px;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container,
    .block-container,
    .block-container.reverse,
    .subscription-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-list {
        display: none; /* In a real app we'd add a hamburger menu, for simplicity hiding on very small screens or we can keep it wrapping */
    }
    
    .subscription-text ul, .block-text ul {
        text-align: left;
        display: inline-block;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .nav-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .nav-list a {
        font-size: 0.9rem;
    }
    
    .cards-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
}