@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #ff7a18;
    --primary-dark: #e56500;
    --primary-light: #ffa563;
    --secondary-color: #1e88e5;
    --secondary-dark: #1565c0;
    --secondary-light: #64b5f6;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f7f9fc;
    --border-color: #e0e0e0;
    --font-heading: 'Comfortaa', cursive;
    --font-body: 'Montserrat', sans-serif;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.button.primary {
    background-color: var(--primary-color);
    color: white;
}

.button.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 122, 24, 0.4);
}

.button.secondary {
    background-color: var(--secondary-color);
    color: white;
}

.button.secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.4);
}

header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.logo .tagline {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin: 0;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(255, 122, 24, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 122, 24, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: var(--transition);
}

.hero {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(255, 251, 248, 0.8), rgba(240, 249, 255, 0.8));
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about {
    background-color: var(--bg-light);
}

.about .container {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.program-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.program-card ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.program-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    list-style-type: none;
}

.program-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.benefits {
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    background-color: rgba(255, 122, 24, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon img {
    width: 40px;
    height: 40px;
}

.benefit-item h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.approach {
    padding: 80px 0;
}

.approach .container {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.approach-content {
    flex: 1;
}

.approach-principles {
    margin-top: 2rem;
}

.principle {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.principle h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.approach-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.testimonials {
    background-color: var(--bg-light);
}

.testimonials-slider {
    margin-top: 2rem;
}

.testimonial {
    display: flex;
    gap: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.testimonial-image {
    flex: 0 0 150px;
}

.testimonial-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary-light);
}

.testimonial-content {
    flex: 1;
}

.quote {
    font-style: italic;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.5;
}

.author {
    font-weight: 600;
    color: var(--secondary-color);
    text-align: right;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact {
    background-color: var(--bg-light);
}

.contact-content {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    flex: 1;
}

.contact-info ul {
    margin: 2rem 0;
}

.contact-info ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info strong {
    display: inline-block;
    width: 100px;
}

.note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin: 0;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--primary-light);
}

.footer-nav h3,
.footer-legal h3,
.footer-contact h3 {
    color: var(--primary-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-nav ul li,
.footer-legal ul li {
    margin-bottom: 0.5rem;
}

.footer-nav a,
.footer-legal a {
    color: white;
    opacity: 0.8;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: var(--primary-light);
    opacity: 1;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.thank-you {
    padding: 100px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    margin: 1.5rem auto;
}

.message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.sub-message {
    margin-bottom: 1.5rem;
}

.thank-you-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.home-link {
    margin-top: 2rem;
}

.back-home {
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
    padding-left: 25px;
}

.back-home::before {
    content: '←';
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.back-home:hover {
    color: var(--primary-color);
}

.back-home:hover::before {
    left: -5px;
}

.policy-container {
    padding: 80px 0;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-date {
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.policy-intro {
    margin-bottom: 3rem;
}

.policy-sections {
    margin-bottom: 3rem;
}

.policy-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.section-icon {
    flex: 0 0 60px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.section-content {
    flex: 1;
}

.section-divider {
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 1rem 0 1.5rem;
}

.data-category {
    margin-bottom: 1.5rem;
}

.data-category h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.colorful-list {
    list-style: none;
    margin: 1.5rem 0;
}

.colorful-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.colorful-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.legal-basis {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

.legal-basis h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.data-retention {
    margin-top: 1.5rem;
}

.retention-category {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-light);
}

.retention-category h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.right-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

.right-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.policy-contact,
.cookies-contact,
.terms-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-email {
    margin-top: 1rem;
    font-weight: 600;
}

.back-to-home {
    margin-top: 2rem;
    text-align: center;
}

.cookies-policy .policy-content {
    max-width: 1000px;
}

.cookies-intro {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.cookies-image {
    flex: 0 0 200px;
}

.cookie-illustration {
    width: 200px;
    height: 200px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cookie-circle {
    width: 150px;
    height: 150px;
    background-color: #f5d8a8;
    border-radius: 50%;
    position: relative;
}

.cookie-circle::before,
.cookie-circle::after {
    content: '';
    position: absolute;
    background-color: #c4a37d;
    border-radius: 50%;
}

.cookie-circle::before {
    width: 25px;
    height: 25px;
    top: 30px;
    left: 30px;
}

.cookie-circle::after {
    width: 20px;
    height: 20px;
    bottom: 40px;
    right: 35px;
}

.cookie-text {
    position: absolute;
    bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.cookies-text {
    flex: 1;
}

.cookies-section {
    margin-bottom: 3rem;
}

.cookies-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.section-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cookie-type {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

.cookie-type-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-icon.essential {
    background-color: #ffcdd2;
}

.cookie-icon.preferences {
    background-color: #bbdefb;
}

.cookie-icon.analytics {
    background-color: #c8e6c9;
}

.cookies-management {
    margin-top: 1.5rem;
}

.browser-list {
    margin: 1.5rem 0;
}

.browser {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--border-color);
}

.browser-name {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.cookies-note {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--text-light);
}

.third-party-cookies {
    margin-top: 1.5rem;
}

.third-party-links {
    margin-top: 1rem;
}

.third-party-link {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--secondary-light);
    color: white;
    border-radius: 20px;
}

.third-party-link:hover {
    background-color: var(--secondary-color);
    color: white;
}

.terms-policy .policy-content {
    max-width: 1000px;
}

.terms-intro-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color);
    margin-bottom: 3rem;
}

.terms-blocks {
    margin-bottom: 3rem;
}

.terms-block {
    margin-bottom: 3rem;
}

.terms-block h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.terms-content {
    padding: 0 1rem;
}

.definitions-list {
    margin: 1.5rem 0;
}

.definitions-list li {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
}

.term {
    font-weight: 700;
    color: var(--secondary-color);
    margin-right: 1rem;
    flex: 0 0 150px;
}

.definition {
    flex: 1;
    min-width: 200px;
}

.terms-list-container {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

.terms-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.terms-services {
    margin-top: 1.5rem;
}

.service-terms {
    margin-bottom: 1.5rem;
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.service-terms h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.liability-box,
.warranty-disclaimer {
    background-color: #fff8e1;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 5px solid #ffc107;
}

.liability-box ul,
.warranty-disclaimer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.liability-box li,
.warranty-disclaimer li {
    margin-bottom: 0.5rem;
    list-style-type: square;
}

@media (max-width: 1200px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero,
    .about .container,
    .approach .container {
        flex-direction: column;
    }
    
    .hero-image img,
    .about-image img,
    .approach-image img {
        max-width: 100%;
    }
    
    .policy-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-icon {
        margin-bottom: 1rem;
    }
    
    .cookies-intro {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .testimonial {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .policy-content {
        padding: 2rem 1.5rem;
    }
    
    .term {
        flex: 0 0 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero,
    section {
        padding: 50px 0;
    }
    
    .thank-you {
        padding: 50px 0;
    }
    
    .thank-you-content {
        padding: 2rem 1.5rem;
    }
    
    .thank-you-links {
        flex-direction: column;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 375px) {
    .header-container {
        padding: 15px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 50px 15px;
    }
    
    .policy-content {
        padding: 1.5rem 1rem;
    }
}