@font-face {
    font-family: 'Momentum';
    src: url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
}

:root {
    --primary-color: #FFD700;
    --primary-dark: #D4B102;
    --secondary-color: #333333;
    --secondary-light: #666666;
    --background-color: #F9F9F9;
    --text-color: #333333;
    --light-gray: #EEEEEE;
    --white: #FFFFFF;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

section {
    padding: 80px 0;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.primary-button,
.secondary-button,
.submit-button,
.home-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.primary-button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.primary-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.secondary-button {
    background-color: var(--light-gray);
    color: var(--secondary-color);
}

.secondary-button:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 100%;
    font-size: 1.1rem;
    padding: 14px 28px;
}

.submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.home-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 20px;
    margin-top: 40px;
}

.home-button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo-container h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.tagline {
    font-size: 0.9rem;
    color: var(--secondary-light);
    font-style: italic;
    margin-bottom: 0;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-menu a {
    font-weight: 500;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-menu a:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.wave-divider {
    position: absolute;
    width: 100%;
    height: 80px;
    left: 0;
    z-index: 1;
    overflow: hidden;
    line-height: 0;
}

.wave-divider.top {
    top: 0;
    transform: rotate(180deg);
}

.wave-divider.bottom {
    bottom: 0;
}

.wave-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    position: relative;
}

.wave-divider path {
    fill: var(--white);
}

.hero {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 5% 150px;
    background-color: var(--white);
    overflow: hidden;
}

.hero-content {
    width: 50%;
    z-index: 2;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: left;
}

.hero-content h2::after {
    left: 0;
    transform: none;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--secondary-light);
}

.hero-image {
    width: 45%;
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: var(--box-shadow);
}

.programs-section {
    background-color: var(--light-gray);
    padding: 100px 5% 150px;
    position: relative;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 0 5%;
    z-index: 2;
    position: relative;
}

.program-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.program-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
}

.program-card p {
    padding: 0 20px 20px;
    color: var(--secondary-light);
}

.program-card .secondary-button {
    margin: 0 20px 20px;
}

.benefits-section {
    background-color: var(--white);
    padding: 100px 5%;
    position: relative;
}

.benefits-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.benefit-image {
    width: 45%;
}

.benefit-image img {
    border-radius: 70% 30% 30% 70% / 70% 30% 70% 30%;
    box-shadow: var(--box-shadow);
}

.benefit-list {
    width: 50%;
}

.benefit-item {
    margin-bottom: 30px;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.benefit-item h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.benefit-item p {
    color: var(--secondary-light);
}

.testimonials-section {
    background-color: var(--light-gray);
    padding: 100px 5% 150px;
    position: relative;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    width: calc(33.333% - 20px);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.2;
}

.testimonial-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-program {
    color: var(--secondary-light);
    font-size: 0.9rem;
}

.about-section {
    background-color: var(--white);
    padding: 100px 5%;
    position: relative;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.about-content {
    width: 55%;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--secondary-light);
}

.about-image {
    width: 40%;
}

.about-image img {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: var(--box-shadow);
}

.contact-section {
    background-color: var(--light-gray);
    padding: 100px 5%;
    position: relative;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.contact-info {
    width: 40%;
}

.contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--secondary-light);
    margin-bottom: 15px;
}

.email-link {
    display: inline-block;
    color: var(--primary-dark);
    font-weight: 600;
    margin-top: 10px;
}

.email-link:hover {
    text-decoration: underline;
}

.contact-form-container {
    width: 55%;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 5% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
}

.footer-logo {
    grid-column: 1;
    grid-row: 1;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.footer-nav {
    grid-column: 2;
    grid-row: 1;
}

.footer-contact {
    grid-column: 3;
    grid-row: 1;
}

.footer-nav-2 {
    grid-column: 2;
    grid-row: 2;
}

.footer-policies {
    grid-column: 1;
    grid-row: 2;
}

.footer-copyright {
    grid-column: 3;
    grid-row: 2;
    align-self: end;
}

footer h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

footer a {
    color: var(--light-gray);
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-color);
}

footer ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thankyou-section {
    background-color: var(--white);
    padding: 150px 5%;
    text-align: center;
    position: relative;
}

.thankyou-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.thankyou-icon {
    margin-bottom: 30px;
}

.thankyou-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.thankyou-info {
    color: var(--secondary-light);
    margin-bottom: 40px;
}

.thankyou-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.policy-section {
    background-color: var(--white);
    padding: 150px 5% 100px;
    position: relative;
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
}

.policy-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.policy-navigation {
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

.policy-nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.policy-nav-list a {
    transition: var(--transition);
    padding-left: 10px;
    border-left: 3px solid transparent;
}

.policy-nav-list a:hover {
    color: var(--primary-dark);
    border-left-color: var(--primary-color);
    padding-left: 15px;
}

.policy-section-content {
    margin-bottom: 50px;
    padding-top: 20px;
}

.policy-section-content h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.policy-section-content p {
    margin-bottom: 15px;
}

.hexagon-title, .diamond-title, .wave-title, 
.circle-title, .star-title, .triangle-title, 
.octagon-title {
    position: relative;
    padding-left: 40px;
}

.hexagon-shape, .diamond-shape, .wave-shape, 
.circle-shape, .star-shape, .triangle-shape, 
.octagon-shape {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
}

.hexagon-shape {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.diamond-shape {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.wave-shape {
    clip-path: polygon(0% 35%, 15% 35%, 15% 0%, 35% 0%, 35% 35%, 65% 35%, 65% 0%, 85% 0%, 85% 35%, 100% 35%, 100% 60%, 85% 60%, 85% 100%, 65% 100%, 65% 60%, 35% 60%, 35% 100%, 15% 100%, 15% 60%, 0% 60%);
}

.circle-shape {
    border-radius: 50%;
}

.star-shape {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.triangle-shape {
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.octagon-shape {
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.data-categories, .protection-measures, .rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.data-category, .protection-item, .right-item {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.data-category:hover, .protection-item:hover, .right-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.data-category h4, .protection-item h4, .right-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.timeline {
    margin: 30px 0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 30px;
    bottom: -20px;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-date {
    min-width: 100px;
    font-weight: 700;
    padding-top: 10px;
}

.timeline-content {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    position: relative;
    flex: 1;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.timeline-content h4 {
    margin-bottom: 10px;
}

.cookies-policy {
    position: relative;
}

.cookie-graphic {
    position: absolute;
    top: 20px;
    right: 40px;
}

.cookie-introduction {
    max-width: 80%;
    margin-bottom: 40px;
}

.cookie-section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.cookie-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    opacity: 0.1;
    border-radius: 0 0 0 100%;
}

.cookie-section-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.cookie-icon {
    font-size: 1.8rem;
}

.cookie-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.cookie-type {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.cookie-type:hover {
    transform: translateY(-5px);
}

.cookie-type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cookie-tag {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cookie-tag.essential {
    background-color: #e3f2fd;
    color: #1565c0;
}

.cookie-tag.analytics {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.cookie-tag.functional {
    background-color: #fff3e0;
    color: #e65100;
}

.cookie-tag.targeting {
    background-color: #ffebee;
    color: #c62828;
}

.browser-instructions {
    margin-top: 30px;
}

.browser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.browser-item {
    background-color: var(--white);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.browser-item h5 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.cookie-table-container {
    overflow-x: auto;
    margin-top: 20px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cookie-table th, .cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.cookie-table th {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:nth-child(even) {
    background-color: rgba(255, 215, 0, 0.05);
}

.cookie-update-info {
    margin-top: 30px;
    padding: 15px;
    background-color: var(--white);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.terms-section {
    background-color: var(--white);
    padding: 150px 5% 100px;
}

.terms-container {
    position: relative;
}

.terms-decoration {
    position: absolute;
    top: 20px;
    right: 40px;
}

.terms-introduction {
    margin-bottom: 40px;
}

.terms-tabs {
    margin-top: 40px;
}

.tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    background-color: var(--light-gray);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    transition: var(--transition);
}

.tab-btn:hover {
    background-color: var(--secondary-light);
    color: var(--white);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terms-article {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.terms-article:last-child {
    border-bottom: none;
}

.terms-article h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.diamond-list {
    list-style: none;
    padding-left: 20px;
}

.diamond-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.diamond-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    transform: rotate(45deg);
}

.terms-acceptance {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

.terms-checkbox {
    flex-shrink: 0;
}

.terms-updates {
    margin-top: 20px;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

@media (max-width: 1200px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .about-container, .benefits-container, .contact-container {
        flex-direction: column;
    }
    
    .about-content, .about-image, .benefit-list, .benefit-image, .contact-info, .contact-form-container {
        width: 100%;
    }
    
    .about-image, .benefit-image {
        order: -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 992px) {
    .testimonial-card {
        width: calc(50% - 15px);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-copyright {
        grid-column: 1 / span 2;
        text-align: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        flex-direction: column;
        padding: 80px 5% 120px;
    }
    
    .hero-content, .hero-image {
        width: 100%;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .main-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        text-align: center;
    }
    
    .main-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .testimonial-card {
        width: 100%;
    }
    
    .thankyou-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .data-categories, .protection-measures, .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-introduction {
        max-width: 100%;
    }
    
    .cookie-graphic {
        display: none;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-nav, .footer-contact, .footer-nav-2, .footer-policies, .footer-copyright {
        grid-column: 1;
    }
    
    .footer-copyright {
        margin-top: 30px;
    }
    
    .policy-container {
        padding: 20px;
    }
    
    .terms-acceptance {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 375px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .primary-button, .secondary-button {
        width: 100%;
    }
    
    .thankyou-icon svg {
        width: 80px;
        height: 80px;
    }
}