@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;600;700&display=swap');

:root {
    --primary-color: #c50e42;
    --secondary-color: #6a0dad;
    --light-color: #f8e8f2;
    --dark-color: #2e0f42;
    --accent-color: #ff4e86;
    --text-color: #333;
    --background-color: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comfortaa', cursive;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.hexagonal-header {
    background: var(--gradient-primary);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 100px;
    color: white;
}

.logo-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.diagonal-nav ul {
    display: flex;
    gap: 2rem;
}

.diagonal-nav a {
    position: relative;
    padding: 0.5rem 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.diagonal-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.diagonal-nav a:hover::after {
    width: 100%;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 5rem 5%;
    background-color: var(--light-color);
    min-height: 80vh;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    object-fit: cover;
    max-height: 500px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 10px rgba(106, 13, 173, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(106, 13, 173, 0.4);
}

.program-section {
    padding: 5rem 5%;
    background-color: var(--background-color);
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.program-card h3 {
    font-size: 1.5rem;
    margin: 1rem;
    color: var(--primary-color);
}

.program-card p {
    padding: 0 1rem 1.5rem;
    color: var(--text-color);
}

.benefits-section {
    padding: 5rem 5%;
    background-color: #f9f0ff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.benefits-content {
    max-width: 650px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefits-image img {
    border-radius: 10px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.stories-section {
    padding: 5rem 5%;
    background-color: var(--background-color);
}

.stories-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.story-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background-color: #f9f0ff;
    border-radius: 15px;
    overflow: hidden;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.story-card.reverse {
    grid-template-columns: 2fr 1fr;
}

.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-section {
    padding: 5rem 5%;
    background: var(--light-color);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Comfortaa', cursive;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.submit-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3);
}

.contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info ul {
    margin-bottom: 2rem;
}

.contact-info li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.contact-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-navigation h3,
.footer-policies h3,
.footer-contact h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.footer-navigation ul,
.footer-policies ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-navigation a,
.footer-policies a {
    transition: color 0.3s ease;
}

.footer-navigation a:hover,
.footer-policies a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

@media screen and (max-width: 992px) {
    .hero-section,
    .benefits-section,
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .story-card,
    .story-card.reverse {
        grid-template-columns: 1fr;
    }
    
    .diagonal-nav {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .logo-container h1 {
        font-size: 2rem;
    }
    
    .hero-section,
    .program-section,
    .benefits-section,
    .stories-section,
    .contact-section {
        padding: 3rem 5%;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .logo-container h1 {
        font-size: 1.6rem;
    }
    
    .program-cards {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 375px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .program-card h3,
    .story-content h3 {
        font-size: 1.3rem;
    }
    
    .logo-container h1 {
        font-size: 1.4rem;
    }
    
    .cta-button,
    .submit-button {
        padding: 0.8rem 1.5rem;
    }
}

.thankyou-main {
    background-color: var(--light-color);
    min-height: 80vh;
    padding: 5rem 0;
}

.thankyou-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.thankyou-message {
    margin-top: 2rem;
}

.thankyou-message p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.thankyou-tips {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f0ff;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.thankyou-tips h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thankyou-tips ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.thankyou-tips li {
    margin-bottom: 0.8rem;
}

.policy-main {
    background-color: var(--light-color);
    padding: 5rem 0;
}

.policy-section {
    max-width: 900px;
    margin: 0 auto;
}

.policy-container {
    background-color: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.policy-updated {
    margin-bottom: 2rem;
    font-style: italic;
    color: #777;
}

.policy-intro, .policy-hexagon {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f9f0ff;
    border-radius: 15px;
    position: relative;
}

.policy-hexagon {
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
}

.policy-hexagon.last {
    margin-top: 3rem;
}

.policy-diamond, .policy-trapezoid, .policy-circle, .policy-pentagon, .policy-octagon {
    margin-bottom: 2rem;
    position: relative;
}

.policy-diamond .policy-inner {
    padding: 2rem;
    background-color: white;
    border: 2px solid #f0d8ff;
    border-radius: 10px;
}

.policy-diamond h3 {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    display: inline-block;
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.policy-trapezoid .policy-inner {
    padding: 2rem;
    background-color: #f9f0ff;
    border-radius: 10px;
}

.policy-trapezoid h3 {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    display: inline-block;
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.policy-circle .policy-inner {
    padding: 2rem;
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
}

.policy-circle h3 {
    background-color: var(--dark-color);
    color: white;
    padding: 0.8rem 1.5rem;
    display: inline-block;
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.policy-pentagon .policy-inner {
    padding: 2rem;
    background-color: #f9f0ff;
    border-radius: 10px;
}

.policy-pentagon h3 {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.8rem 1.5rem;
    display: inline-block;
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.policy-octagon .policy-inner {
    padding: 2rem;
    background-color: white;
    border: 2px dashed var(--secondary-color);
    border-radius: 10px;
}

.policy-octagon h3 {
    background-color: var(--accent-color);
    color: white;
    padding: 0.8rem 1.5rem;
    display: inline-block;
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.policy-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.policy-content p, .policy-content li {
    margin-bottom: 1rem;
}

.policy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    position: relative;
    padding-left: 0.5rem;
}

.policy-footer {
    margin-top: 3rem;
    text-align: center;
}

.policy-footer p {
    margin-bottom: 1.5rem;
}

.policy-footer .cta-button {
    display: inline-block;
}

.cookies-main .policy-container {
    max-width: 850px;
    margin: 0 auto;
}

.cookies-intro {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.cookie-graphic {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    width: 150px;
    flex-shrink: 0;
}

.cookie-circle {
    width: 60px;
    height: 60px;
    background-color: #f0c090;
    border-radius: 50%;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.cookie-circle::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #70421d;
    border-radius: 50%;
    top: 15px;
    left: 20px;
}

.cookie-circle::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #70421d;
    border-radius: 50%;
    bottom: 15px;
    right: 20px;
}

.cookie-text {
    flex-grow: 1;
}

.cookie-section {
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
}

.cookie-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.cookie-inner {
    background-color: #f9f8fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.cookie-type {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.cookie-type h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.browser-list, .third-party-list, .contact-list {
    list-style: none;
    padding-left: 0;
}

.browser-list li, .third-party-list li, .contact-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.browser-list li:before, .third-party-list li:before, .contact-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.terms-main .policy-container {
    padding: 0;
    overflow: hidden;
}

.terms-header {
    background: var(--gradient-primary);
    padding: 3rem;
    color: white;
}

.terms-header .section-title {
    color: white;
}

.terms-header .section-title::after {
    background: white;
}

.terms-header .policy-updated {
    color: rgba(255, 255, 255, 0.8);
}

.terms-intro {
    padding: 2rem 3rem;
}

.terms-intro-card {
    background-color: #f9f0ff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.15);
}

.terms-content {
    padding: 0 3rem 3rem;
}

.terms-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.terms-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
    background: linear-gradient(135deg, rgba(197, 14, 66, 0.15) 0%, rgba(106, 13, 173, 0.15) 100%);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.terms-text {
    flex-grow: 1;
}

.terms-text h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1.2rem;
}

.terms-inner {
    background-color: #fafafa;
    padding: 1.5rem;
    border-radius: 10px;
}

.terms-inner p {
    margin-bottom: 1rem;
}

.terms-inner ul {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}

.terms-inner li {
    margin-bottom: 0.5rem;
}

.zigzag, .diagonal, .wavy, .curved, .angular, .staggered, .layered, .gradient {
    position: relative;
}

.zigzag::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 5%, 0 10%, 0 15%, 100% 20%, 100% 25%, 0 30%, 0 35%, 100% 40%, 100% 45%, 0 50%, 0 55%, 100% 60%, 100% 65%, 0 70%, 0 75%, 100% 80%, 100% 85%, 0 90%, 0 95%, 100% 100%, 0 100%);
}

.diagonal::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom right, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.wavy::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.curved::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    height: 100%;
    width: 4px;
    background: radial-gradient(circle at left, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.angular::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.staggered::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary-color) 45%, var(--secondary-color) 55%, var(--secondary-color) 100%);
}

.layered::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    height: 100%;
    width: 6px;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 49%, transparent 49%, transparent 51%, var(--secondary-color) 51%, var(--secondary-color) 100%);
}

.gradient::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color), var(--secondary-color));
}

@media screen and (max-width: 768px) {
    .policy-container {
        padding: 2rem;
    }
    
    .cookies-intro {
        flex-direction: column;
    }
    
    .terms-header {
        padding: 2rem;
    }
    
    .terms-intro, .terms-content {
        padding: 2rem;
    }
    
    .terms-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .terms-number {
        margin-bottom: 1rem;
    }
    
    .cookie-types {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 375px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .program-card h3,
    .story-content h3 {
        font-size: 1.3rem;
    }
    
    .logo-container h1 {
        font-size: 1.4rem;
    }
    
    .cta-button,
    .submit-button {
        padding: 0.8rem 1.5rem;
    }
    
    .policy-container {
        padding: 1.5rem;
    }
    
    .terms-header, .terms-intro, .terms-content {
        padding: 1.5rem;
    }
    
    .policy-content h3 {
        font-size: 1.3rem;
    }
}