@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700&display=swap');

:root {
    --primary-red: #d12026;
    --primary-blue: #2060c0;
    --dark-red: #9e1a1f;
    --dark-blue: #194280;
    --light-red: #f5d6d7;
    --light-blue: #d6e5f5;
    --white: #ffffff;
    --black: #222222;
    --gray: #f5f5f5;
    --dark-gray: #444444;
    --light-gray: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comfortaa', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: color 0.3s;
}

a:hover {
    color: var(--primary-red);
}

ul {
    list-style-type: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid var(--primary-red);
}

.button:hover {
    background-color: var(--white);
    color: var(--primary-red);
}

.button.outline {
    background-color: transparent;
    color: var(--primary-red);
}

.button.outline:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    margin-bottom: 0;
    color: var(--primary-blue);
}

.logo h1 span {
    color: var(--primary-red);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--black);
    font-weight: 700;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a:hover {
    color: var(--primary-red);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.hero {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    align-items: center;
    gap: 30px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.hero h2 span {
    color: var(--primary-red);
    display: block;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.benefits {
    padding: 60px 20px;
    background-color: var(--gray);
    position: relative;
    overflow: hidden;
}

.benefit-hexagon {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.hexagon {
    width: 250px;
    height: 300px;
    position: relative;
    background-color: var(--white);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hexagon:hover {
    transform: translateY(-10px);
}

.hexagon img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.hexagon h3 {
    font-size: 18px;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.hexagon p {
    font-size: 14px;
}

.diagonal-section {
    padding: 80px 20px;
    position: relative;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.diagonal-section .content {
    flex: 1;
}

.diagonal-section h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.diagonal-section h2 span {
    color: var(--primary-red);
}

.diagonal-section p {
    margin-bottom: 15px;
    font-size: 16px;
}

.diagonal-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(-3deg);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
}

.programs {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.programs h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 50px;
}

.programs h2 span {
    color: var(--primary-red);
}

.program-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.program-card {
    width: 350px;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-card.featured {
    border: 2px solid var(--primary-red);
    transform: scale(1.05);
}

.program-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
    color: var(--primary-blue);
}

.program-card p {
    padding: 0 20px;
    margin-bottom: 15px;
    font-size: 14px;
}

.program-card ul {
    padding: 0 20px;
    margin-bottom: 20px;
}

.program-card ul li {
    font-size: 14px;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.program-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 20px;
}

.program-details {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: var(--light-gray);
    margin-bottom: 20px;
}

.time, .price {
    font-weight: 700;
    font-size: 14px;
}

.program-card .button {
    margin: 0 20px 20px;
}

.testimonials {
    padding: 80px 20px;
    background-color: var(--gray);
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 50px;
}

.testimonials h2 span {
    color: var(--primary-red);
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial.reverse {
    flex-direction: row-reverse;
}

.testimonial-content {
    flex: 2;
}

.testimonial-image {
    flex: 1;
}

.testimonial-image img {
    border-radius: 50%;
    border: 5px solid var(--light-blue);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.testimonial p::before {
    content: '"';
    font-size: 60px;
    color: var(--light-red);
    position: absolute;
    left: -10px;
    top: -20px;
    opacity: 0.5;
}

.testimonial h4 {
    color: var(--primary-blue);
    font-size: 16px;
    text-align: right;
}

.health-info {
    padding: 80px 20px;
}

.health-container {
    max-width: 1200px;
    margin: 0 auto;
}

.health-info h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 50px;
}

.health-info h2 span {
    color: var(--primary-red);
}

.health-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.health-text {
    flex: 3;
}

.health-text p {
    margin-bottom: 20px;
}

.health-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.health-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.health-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
}

.health-image {
    flex: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact {
    padding: 80px 20px;
    background-color: var(--gray);
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 50px;
}

.contact h2 span {
    color: var(--primary-red);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1;
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3, .contact-form h3 {
    color: var(--primary-red);
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: 'Comfortaa', sans-serif;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    flex: 2;
}

.footer-logo h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-logo h2 span {
    color: var(--light-red);
}

.footer-nav, .footer-programs, .footer-policies {
    flex: 1;
}

.footer-container h3 {
    color: var(--light-red);
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-red);
}

.footer-container ul li {
    margin-bottom: 10px;
}

.footer-container ul li a {
    color: var(--white);
}

.footer-container ul li a:hover {
    color: var(--light-red);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 14px;
}

.thank-you-page {
    padding: 60px 20px;
}

.thank-you-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thank-you-content {
    text-align: center;
    margin-bottom: 40px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.thank-you-page h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.what-next {
    text-align: left;
    margin: 30px 0;
    padding: 20px;
    background-color: var(--light-blue);
    border-radius: 10px;
}

.what-next h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.what-next ol {
    padding-left: 20px;
}

.what-next ol li {
    margin-bottom: 10px;
}

.buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.quote-block {
    background-color: var(--light-red);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.quote-block blockquote {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    padding: 0 20px;
}

.quote-block blockquote::before,
.quote-block blockquote::after {
    content: '"';
    font-size: 40px;
    color: var(--primary-red);
    opacity: 0.5;
}

.quote-block blockquote::before {
    position: absolute;
    left: 0;
    top: -10px;
}

.quote-block blockquote::after {
    position: absolute;
    right: 0;
    bottom: -20px;
}

.quote-author {
    text-align: right;
    font-weight: 700;
}

.policy-page {
    padding: 60px 20px;
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
}

.policy-header h2 {
    font-size: 36px;
    color: var(--primary-blue);
}

.policy-header h2 span {
    color: var(--primary-red);
}

.updated-date {
    color: var(--dark-gray);
    font-style: italic;
}

.privacy-policy .policy-navigation {
    background-color: var(--light-blue);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.policy-navigation h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.policy-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.policy-navigation ul li a {
    color: var(--primary-blue);
    font-size: 14px;
}

.policy-navigation ul li a:hover {
    color: var(--primary-red);
}

.policy-section {
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
}

.section-decoration {
    width: 30px;
    position: relative;
}

.decoration-element {
    position: absolute;
    top: 10px;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--primary-red);
    border-radius: 50%;
}

.section-content {
    flex: 1;
}

.policy-section h3 {
    color: var(--primary-blue);
    font-size: 24px;
    margin-bottom: 20px;
}

.policy-section p {
    margin-bottom: 15px;
}

.info-collection-blocks, .info-block {
    margin-bottom: 20px;
}

.info-block h4 {
    color: var(--primary-red);
    margin-bottom: 10px;
}

.info-block ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.info-block ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
}

.info-block ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.usage-item {
    background-color: var(--light-blue);
    padding: 20px;
    border-radius: 10px;
}

.usage-item h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.disclosure-cases {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.case {
    background-color: var(--light-red);
    padding: 20px;
    border-radius: 10px;
}

.case h4 {
    color: var(--primary-red);
    margin-bottom: 10px;
}

.rights-list li {
    margin-bottom: 10px;
}

.contact-details {
    background-color: var(--light-blue);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.back-to-home {
    text-align: center;
    margin-top: 40px;
}

.cookies-policy .cookie-intro {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.cookie-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cookie-section h3 {
    color: var(--primary-blue);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-blue);
}

.section-content.with-border {
    border-left: 3px solid var(--primary-red);
    padding-left: 20px;
}

.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-type {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.cookie-type h4 {
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.type-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.type-tag.essential {
    background-color: var(--primary-red);
    color: var(--white);
}

.type-tag.analytics,
.type-tag.functional {
    background-color: var(--primary-blue);
    color: var(--white);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.cookie-table th, .cookie-table td {
    border: 1px solid var(--light-gray);
    padding: 10px;
    text-align: left;
}

.cookie-table th {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    font-weight: 700;
}

.cookie-table tr:nth-child(even) {
    background-color: var(--gray);
}

.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.browser {
    background-color: var(--light-blue);
    padding: 15px;
    border-radius: 10px;
}

.browser h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.browser p {
    font-size: 14px;
}

.terms-policy .terms-intro {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
    padding: 0 40px;
}

.terms-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.terms-sidebar {
    flex: 1;
}

.terms-content {
    flex: 3;
}

.terms-nav {
    background-color: var(--light-blue);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.terms-nav ul li {
    margin-bottom: 10px;
}

.terms-nav ul li a {
    font-size: 14px;
}

.terms-quote {
    background-color: var(--light-red);
    padding: 20px;
    border-radius: 10px;
}

.terms-quote blockquote {
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.terms-quote blockquote::before,
.terms-quote blockquote::after {
    content: '"';
    font-size: 40px;
    color: var(--primary-red);
    opacity: 0.5;
}

.terms-quote blockquote::before {
    position: absolute;
    left: 0;
    top: -10px;
}

.terms-quote blockquote::after {
    position: absolute;
    right: 0;
    bottom: -20px;
}

.terms-section {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.terms-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.terms-number span {
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.terms-text {
    flex: 1;
}

.terms-text h3 {
    color: var(--primary-blue);
    font-size: 24px;
    margin-bottom: 20px;
}

.terms-text p, .terms-text ul, .terms-text ol {
    margin-bottom: 15px;
}

.terms-text ul li, .terms-text ol li {
    margin-bottom: 8px;
}

.terms-text ul {
    padding-left: 20px;
    list-style-type: disc;
}

.terms-text ol {
    padding-left: 20px;
}

.payment-terms {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.payment-column {
    flex: 1;
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
}

.payment-column h4 {
    color: var(--primary-red);
    margin-bottom: 15px;
}

.health-disclaimer {
    background-color: var(--light-red);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.terms-acceptance {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .hero, .diagonal-section, .health-content, .contact-container, .testimonial, .testimonial.reverse {
        flex-direction: column;
    }
    
    .diagonal-section .content, .health-text, .health-image, .contact-info, .contact-form, .testimonial-content, .testimonial-image {
        width: 100%;
    }
    
    .hero-image, .diagonal-image, .health-image {
        margin-top: 30px;
    }
    
    .benefit-hexagon {
        justify-content: center;
    }
    
    .terms-layout {
        flex-direction: column;
    }
    
    .terms-sidebar {
        order: 2;
    }
    
    .terms-content {
        order: 1;
    }
    
    .payment-terms {
        flex-direction: column;
    }
    
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 20px;
        justify-content: center;
    }
    
    nav ul li:first-child {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .program-cards {
        justify-content: center;
    }
    
    .program-card {
        width: 100%;
        max-width: 400px;
    }
    
    .program-card.featured {
        transform: none;
    }
    
    .program-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-container h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .usage-grid {
        grid-template-columns: 1fr;
    }
    
    .browser-instructions {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin: 0 10px 10px;
    }
}

@media (max-width: 575px) {
    .hero h2 {
        font-size: 32px;
    }
    
    .diagonal-section h2, .programs h2, .testimonials h2, .health-info h2, .contact h2, .policy-header h2 {
        font-size: 28px;
    }
    
    .hexagon {
        width: 100%;
    }
    
    .policy-section {
        flex-direction: column;
    }
    
    .section-decoration {
        display: none;
    }
    
    .cookie-table {
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .header-container, .hero, .programs, .testimonials, .health-info, .contact, .policy-page, .thank-you-page {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .policy-container, .thank-you-container {
        padding: 20px;
    }
    
    .buttons-container {
        flex-direction: column;
    }
    
    .button {
        width: 100%;
        text-align: center;
    }
}