:root {
    --primary-bg: #F0F2F5;
    --accent-green: #4CAF50;
    --accent-blue: #2196F3;
    --accent-yellow: #FFC107;
    --text-dark: #2C3E50;
    --text-light: #5A6C7D;
    --white: #FFFFFF;
    --border-light: #E8EAED;
}

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

html, body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3 {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3rem;
    letter-spacing: 0.02em;
    color: var(--text-dark);
}

h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

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

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

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

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

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

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

button, .btn {
    font-family: inherit;
    padding: 12px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

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

.btn-secondary:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

header {
    position: sticky;
    top: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

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

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

nav a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

footer {
    background-color: var(--primary-bg);
    border-top: 1px solid var(--border-light);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.section {
    padding: 4rem 2rem;
}

.section-full-width {
    width: 100%;
    padding: 4rem 2rem;
}

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

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

.hero-section {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
}

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

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

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

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

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.timeline {
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    margin-top: 0.3rem;
}

.timeline-content {
    padding-left: 1rem;
    border-left: 2px solid var(--accent-blue);
}

.accordion {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--border-light);
}

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

.accordion-header {
    padding: 1.5rem;
    background-color: var(--white);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    user-select: none;
}

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

.accordion-header.active {
    background-color: var(--primary-bg);
    color: var(--accent-blue);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-body.open {
    max-height: 500px;
}

.accordion-content {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.disclaimer-box {
    background-color: var(--primary-bg);
    border-left: 4px solid var(--accent-yellow);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.disclaimer-box p {
    margin: 0;
    font-size: 0.95rem;
}

.cta-section {
    text-align: center;
    padding: 2rem 0;
}

.cta-section h2 {
    margin-top: 0;
}

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

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.img-responsive {
    width: 100%;
    height: auto;
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-actions button {
    padding: 10px 24px;
    font-size: 0.95rem;
}

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

.btn-cookie-accept:hover {
    background-color: #45a049;
}

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

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

.btn-cookie-policy {
    color: var(--white);
    text-decoration: underline;
    padding: 0;
    margin-left: 0.5rem;
    cursor: pointer;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

input[type="email"],
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

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

.form-disclaimer {
    background-color: var(--primary-bg);
    border-left: 4px solid var(--accent-blue);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.success-message {
    background-color: #E8F5E9;
    border-left: 4px solid var(--accent-green);
    color: #2E7D32;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

th {
    background-color: var(--primary-bg);
    font-weight: 700;
    color: var(--text-dark);
}

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

.css-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-mind {
    background: linear-gradient(135deg, var(--accent-blue), #64B5F6);
    position: relative;
}

.icon-mind::before {
    content: '🧠';
    font-size: 1.5rem;
}

.icon-habit {
    background: linear-gradient(135deg, var(--accent-green), #81C784);
    position: relative;
}

.icon-habit::before {
    content: '⚡';
    font-size: 1.5rem;
}

.icon-growth {
    background: linear-gradient(135deg, var(--accent-yellow), #FFD54F);
    position: relative;
}

.icon-growth::before {
    content: '📈';
    font-size: 1.5rem;
}

.icon-wellness {
    background: linear-gradient(135deg, #FF7043, #FF8A65);
    position: relative;
}

.icon-wellness::before {
    content: '❤️';
    font-size: 1.5rem;
}

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

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    nav ul {
        gap: 1rem;
    }

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

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

    .hero-section {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .header-content {
        padding: 1rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-actions button {
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

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

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

    h2 {
        font-size: 1.3rem;
    }

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

    .logo {
        font-size: 1.2rem;
    }

    nav ul {
        width: 100%;
    }

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

    .cookie-text {
        font-size: 0.85rem;
    }
}
