@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #1a8673;
    --secondary-color: #3498db;
    --accent-color: #27ae60;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Comfortaa', cursive;
    margin-bottom: 1rem;
    color: var(--primary-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;
    display: block;
}

section {
    padding: 4rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn-primary {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: white;
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.header {
    position: relative;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.header-wave {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' style='fill:%231a8673;'/%3E%3C/svg%3E");
    background-size: cover;
    z-index: -1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    margin-right: 1rem;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 3px 0;
    background: var(--primary-color);
    transition: var(--transition);
}

.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-hexagon {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-hexagon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    background: rgba(26, 134, 115, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.benefits {
    background: linear-gradient(to bottom, #f9f9f9, white);
    padding: 5rem 0;
}

.hexagon-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.hexagon {
    position: relative;
    width: 300px;
    height: 340px;
    background: white;
    margin: 1.5rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.hexagon:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.hex-inner {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.hex-inner img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.hex-inner h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
}

.programs {
    padding: 5rem 0;
    background: #f5f5f5;
    text-align: center;
}

.programs h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.wave-divider {
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%233498db'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%233498db'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%233498db'/%3E%3C/svg%3E");
    background-size: cover;
    margin: 0 auto 3rem;
}

.programs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.program-card {
    position: relative;
    width: 350px;
    height: 450px;
    perspective: 1000px;
}

.program-front, .program-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.8s;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.program-front {
    background: white;
}

.program-back {
    background: white;
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.program-front img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.program-front h3 {
    padding: 1.5rem;
    font-size: 1.5rem;
}

.program-back h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.program-back p {
    margin-bottom: 1.5rem;
}

.program-back .btn-secondary {
    margin-top: auto;
    align-self: flex-start;
}

.program-card:hover .program-front {
    transform: rotateY(180deg);
}

.program-card:hover .program-back {
    transform: rotateY(0);
}

.stories {
    padding: 5rem 0;
    text-align: center;
}

.stories h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.water-divider {
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V7.23C0,65.52,268.63,112.77,600,112.77S1200,65.52,1200,7.23V0Z' fill='%231a8673' opacity='0.2'/%3E%3Cpath d='M0,0V15.81C0,65.52,271.1,112.77,600,112.77S1200,65.52,1200,15.81V0Z' fill='%231a8673' opacity='0.4'/%3E%3Cpath d='M0,0V24.11C0,65.52,273.57,112.77,600,112.77s600-47.25,600-88.66V0Z' fill='%231a8673' opacity='0.6'/%3E%3C/svg%3E");
    background-size: cover;
    margin: 0 auto 3rem;
}

.stories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.story {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.story.reverse {
    flex-direction: row-reverse;
}

.story img {
    width: 40%;
    height: 350px;
    object-fit: cover;
}

.story-content {
    padding: 2rem;
    text-align: left;
}

.story-content h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.story-content p {
    font-style: italic;
}

.experts {
    padding: 5rem 0;
    background: #f5f5f5;
    text-align: center;
}

.experts h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.bubble-divider {
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V6c0,21.6,291,111.46,741,110.26,445.39,3.6,459-88.3,459-110.26V0Z' fill='%233498db' opacity='0.6'/%3E%3C/svg%3E");
    background-size: cover;
    margin: 0 auto 3rem;
}

.experts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.expert {
    display: flex;
    flex-direction: column;
    width: 300px;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.expert:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.expert-image {
    position: relative;
    overflow: hidden;
}

.expert-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.expert:hover .expert-image img {
    transform: scale(1.05);
}

.expert-info {
    padding: 1.5rem;
    text-align: left;
}

.expert-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.expert-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.consultation {
    padding: 5rem 0;
    text-align: center;
}

.consultation h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.consultation-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.consultation-image {
    flex: 1;
    min-width: 300px;
}

.consultation-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.consultation-form {
    flex: 1;
    min-width: 300px;
}

form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 134, 115, 0.2);
}

.consent {
    display: flex;
    align-items: flex-start;
}

.consent input {
    width: auto;
    margin-right: 0.8rem;
    margin-top: 0.3rem;
}

.consent label {
    margin-bottom: 0;
}

button[type="submit"] {
    width: 100%;
}

.contact {
    padding: 5rem 0;
    background: #f5f5f5;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-text h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

footer {
    position: relative;
    background: #2c3e50;
    color: white;
    padding-top: 8rem;
}

.footer-wave {
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 70px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V120H0V56.44C0,56.44,0,56.44,0,56.44Z' fill='%232c3e50'/%3E%3C/svg%3E");
    background-size: cover;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    margin-bottom: 1rem;
}

.footer-logo h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-nav, .footer-policies, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-nav h3, .footer-policies h3, .footer-contact h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-nav h3::after, .footer-policies h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-nav ul, .footer-policies ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-nav a, .footer-policies a {
    color: #bdc3c7;
    transition: var(--transition);
}

.footer-nav a:hover, .footer-policies a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 0.7rem;
    color: #bdc3c7;
}

.footer-bottom {
    background: #1a252f;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
}

.policy-header {
    position: relative;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.policy-main {
    padding: 4rem 0;
    background: #f9f9f9;
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.policy-title-wrapper {
    margin-bottom: 3rem;
    text-align: center;
}

.policy-hexagon, .policy-circle, .policy-rhombus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 4rem;
    margin: 0 auto;
    background: var(--gradient-primary);
    color: white;
}

.policy-hexagon {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.policy-circle {
    border-radius: 50%;
    padding: 4rem;
}

.policy-rhombus {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.policy-title-wrapper h1 {
    color: white;
    margin-bottom: 0;
    font-size: 2rem;
}

.info-section {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.policy-back-button {
    text-align: center;
    margin-top: 2rem;
}

.policy-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.accordion-title {
    background: #f5f5f5;
    padding: 1rem 1.5rem;
    cursor: pointer;
    position: relative;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.accordion-title::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.accordion-item.open .accordion-title::after {
    content: '-';
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.open .accordion-content {
    padding: 1.5rem;
    max-height: 1000px;
}

.honeycomb-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.7rem;
}

.honeycomb-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.honeycomb-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.honeycomb-item {
    flex: 1;
    min-width: 200px;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    position: relative;
}

.honeycomb-item::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 10px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.honeycomb-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    color: var(--secondary-color);
}

.waves-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.wave-item {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.wave-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V7.23C0,65.52,268.63,112.77,600,112.77S1200,65.52,1200,7.23V0Z' fill='%231a8673' opacity='0.2'/%3E%3Cpath d='M0,0V15.81C0,65.52,271.1,112.77,600,112.77S1200,65.52,1200,15.81V0Z' fill='%231a8673' opacity='0.4'/%3E%3Cpath d='M0,0V24.11C0,65.52,273.57,112.77,600,112.77s600-47.25,600-88.66V0Z' fill='%231a8673' opacity='0.6'/%3E%3C/svg%3E");
    background-size: cover;
}

.wave-icon {
    display: inline-block;
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
}

.data-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.flow-node {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    position: relative;
}

.flow-node::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
}

.node-content {
    text-align: center;
    font-weight: 600;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.rights-list {
    margin: 1.5rem 0;
}

.rights-list li {
    margin-bottom: 0.7rem;
    padding-left: 2rem;
    position: relative;
}

.rights-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
}

.contact-rings {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.ring {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ring-inner {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}

.ring-inner h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.cookie-tabs {
    width: 100%;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tab-button {
    padding: 0.8rem 1.2rem;
    background: #f5f5f5;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.tab-button.active, .tab-button:hover {
    background: var(--primary-color);
    color: white;
}

.tab-pane {
    display: none;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: var(--border-radius);
}

.tab-pane.active {
    display: block;
}

.cookie-explanation {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cookie-icon {
    font-size: 4rem;
}

.cookie-browser {
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 2rem;
}

.browser-header {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 0.8rem;
    border-bottom: 1px solid #ddd;
}

.browser-buttons {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.browser-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.browser-address {
    flex-grow: 1;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.browser-content {
    padding: 1.5rem;
    background: white;
}

.cookie-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.cookie-device, .cookie-server {
    width: 150px;
    height: 100px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
}

.cookie-arrows {
    display: flex;
    gap: 1rem;
}

.arrow-left, .arrow-right {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.cookie-note {
    text-align: center;
    font-style: italic;
    margin-top: 1rem;
}

.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-type {
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cookie-type-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f5f5f5;
}

.cookie-type-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.essential-icon {
    background: rgba(26, 134, 115, 0.2);
    color: var(--primary-color);
}

.analytics-icon {
    background: rgba(52, 152, 219, 0.2);
    color: var(--secondary-color);
}

.functional-icon {
    background: rgba(39, 174, 96, 0.2);
    color: var(--accent-color);
}

.cookie-type-header h3 {
    margin-bottom: 0;
}

.cookie-type-content {
    padding: 1rem;
}

.cookie-table-container {
    overflow-x: auto;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
}

.cookie-table th, .cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background: #f5f5f5;
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background: #f9f9f9;
}

.cookie-management {
    margin-top: 1.5rem;
}

.browser-instructions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.browser-card {
    flex: 1;
    min-width: 250px;
    background: #f5f5f5;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.browser-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
}

.browser-icon {
    font-size: 1.5rem;
}

.browser-logo h3 {
    margin-bottom: 0;
    color: white;
}

.instructions-steps {
    padding: 1rem;
}

.instructions-steps ol {
    padding-left: 1.5rem;
}

.cookie-warning {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #ffe6e6;
    border-left: 3px solid #ff6666;
    border-radius: var(--border-radius);
}

.policy-changes {
    margin-top: 1.5rem;
}

.version-timeline {
    margin-top: 2rem;
    position: relative;
}

.version-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100px;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-left: 120px;
    margin-bottom: 1.5rem;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    text-align: right;
    font-weight: 600;
}

.timeline-content {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: var(--border-radius);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -10px;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.terms-sections {
    padding: 1rem;
}

.terms-intro {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-style: italic;
}

.terms-timeline {
    position: relative;
}

.terms-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 2px;
    background: var(--primary-color);
}

.terms-section {
    position: relative;
    padding-left: 120px;
    margin-bottom: 3rem;
}

.section-number {
    position: absolute;
    left: 36px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.section-content {
    position: relative;
}

.section-content h2 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.section-content::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -84px;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
}

.section-inner {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.colorful-list {
    margin: 1.5rem 0;
}

.colorful-list li {
    margin-bottom: 0.8rem;
    padding-left: 2.5rem;
    position: relative;
}

.colorful-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.colorful-list li:nth-child(1)::before {
    background: var(--primary-color);
}

.colorful-list li:nth-child(2)::before {
    background: var(--secondary-color);
}

.colorful-list li:nth-child(3)::before {
    background: var(--accent-color);
}

.colorful-list li:nth-child(4)::before {
    background: #e74c3c;
}

.payment-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.payment-item {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: var(--border-radius);
}

.payment-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.limitation-box {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--secondary-color);
}

.contact-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-box {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: var(--border-radius);
    text-align: center;
}

.contact-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: var(--secondary-color);
}

.thank-you-header {
    position: relative;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.thank-you-main {
    padding: 4rem 0;
    background: #f9f9f9;
}

.thank-you-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.thank-you-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.thank-you-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    font-size: 2.5rem;
    border-radius: 50%;
    margin-bottom: 2rem;
}

.thank-you-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thank-you-message {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.next-steps {
    margin-bottom: 2rem;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 200px;
    position: relative;
    padding-left: 40px;
    text-align: left;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    color: var(--secondary-color);
}

.additional-info, .contact-reminder {
    margin-bottom: 2rem;
}

.additional-info h3, .contact-reminder h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.info-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.info-links li {
    background: #f5f5f5;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: var(--transition);
}

.info-links li:hover {
    background: var(--primary-color);
}

.info-links li:hover a {
    color: white;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.method-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.return-home {
    margin-top: 2rem;
}

@media (max-width: 1200px) {
    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .header-content {
        padding: 1rem;
    }

    .main-nav ul {
        gap: 1.5rem;
    }

    .hero {
        height: 80vh;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .story, .story.reverse {
        flex-direction: column;
    }

    .story img {
        width: 100%;
    }

    .consultation-container {
        flex-direction: column;
    }

    .footer-content {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .header-content {
        position: relative;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        height: 70vh;
    }

    .hero-text {
        width: 90%;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    h2 {
        font-size: 2rem !important;
    }

    .hexagon {
        width: 250px;
        height: 290px;
    }

    .hex-inner h3 {
        font-size: 1.1rem;
    }

    .program-card {
        width: 300px;
        height: 400px;
    }

    .cookie-explanation {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-device, .cookie-server {
        width: 120px;
        height: 80px;
    }

    .timeline-item {
        padding-left: 100px;
    }

    .terms-section {
        padding-left: 80px;
    }

    .section-content::before {
        left: -45px;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .hero {
        height: 60vh;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .hero-text {
        padding: 1.5rem;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    section {
        padding: 2rem 0;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .hexagon {
        width: 220px;
        height: 260px;
    }

    .hex-inner h3 {
        font-size: 1rem;
    }

    .program-card {
        width: 280px;
        height: 380px;
    }

    .story-content h3 {
        font-size: 1.5rem;
    }

    .expert {
        width: 250px;
    }

    .footer-content {
        gap: 1rem;
    }

    .footer-logo, .footer-nav, .footer-policies, .footer-contact {
        min-width: 100%;
    }

    .version-timeline::before {
        left: 80px;
    }

    .timeline-item {
        padding-left: 90px;
    }

    .timeline-date {
        width: 70px;
    }

    .terms-timeline::before {
        left: 30px;
    }

    .terms-section {
        padding-left: 60px;
    }

    .section-number {
        left: 15px;
    }

    .section-content::before {
        left: -30px;
        width: 15px;
    }

    .cookie-flow {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-arrows {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 375px) {
    .logo h1 {
        font-size: 1.3rem;
    }

    .logo img {
        width: 80px;
        height: auto;
    }

    .hero {
        height: 50vh;
    }

    .hero-text h2 {
        font-size: 1.3rem;
    }

    .hero-text {
        padding: 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    .hexagon {
        width: 200px;
        height: 240px;
    }

    .hex-inner {
        padding: 1rem;
    }

    .program-card {
        width: 250px;
        height: 350px;
    }

    .program-back {
        padding: 1rem;
    }

    .program-back h3 {
        font-size: 1.3rem;
    }

    .expert {
        width: 220px;
    }

    .expert-image img {
        height: 300px;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    label {
        font-size: 0.9rem;
    }

    input, select, textarea {
        padding: 0.6rem;
    }

    .policy-hexagon, .policy-circle, .policy-rhombus {
        padding: 1.5rem;
    }

    .policy-title-wrapper h1 {
        font-size: 1.5rem;
    }

    .info-section {
        padding: 1rem;
    }

    .accordion-title {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .thank-you-card {
        padding: 2rem 1rem;
    }

    .thank-you-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .thank-you-card h2 {
        font-size: 1.8rem;
    }

    .next-steps h3, .additional-info h3, .contact-reminder h3 {
        font-size: 1.2rem;
    }

    .step {
        min-width: 100%;
    }
}