
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #4CAF50;
    --primary-light: #8BC34A;
    --primary-dark: #388E3C;
    --accent-color: #CDDC39;
    --accent-light: #D4E157;
    --accent-dark: #AFB42B;
    --text-dark: #212121;
    --text-light: #FFFFFF;
    --text-muted: #757575;
    --background-light: #F5F7F0;
    --background-dark: #E8F5E9;
    --border-color: #E0E0E0;
    --success-color: #66BB6A;
    --error-color: #F44336;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-light);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 80px 0;
    position: relative;
}

.section-description {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.btn-primary, .btn-secondary, .btn-tertiary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-tertiary {
    background-color: var(--accent-light);
    color: var(--text-dark);
    font-size: 0.9rem;
    padding: 8px 16px;
}

.btn-tertiary:hover {
    background-color: var(--accent-dark);
    color: var(--text-light);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 20px;
}

.btn-back:before {
    content: '←';
    margin-right: 8px;
    font-size: 1.2em;
}

.btn-back:hover {
    transform: translateX(-5px);
}

.pulse-effect {
    position: relative;
    overflow: hidden;
}

.pulse-effect:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.pulse-effect:hover:after {
    width: 200px;
    height: 200px;
    opacity: 1;
    transition: all 0.6s ease-out;
}

.shift-effect {
    transition: all 0.3s ease;
}

.shift-effect:hover {
    transform: translateX(5px);
}

header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-menu li a:not(.btn-primary):after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu li a:not(.btn-primary):hover:after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero-wave, .benefits-wave, .testimonials-wave, .thankyou-wave {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background-size: 100% 100%;
}

.top-wave {
    top: 0;
    background-image: 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' fill='%23F5F7F0' /%3E%3C/svg%3E");
}

.bottom-wave {
    bottom: 0;
    transform: rotate(180deg);
    background-image: 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' fill='%23F5F7F0' /%3E%3C/svg%3E");
}

.hero {
    background-color: var(--primary-light);
    padding: 100px 0 120px;
    margin-top: -20px;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    color: var(--text-light);
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    max-width: 500px;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: rotate(2deg);
}

.programs {
    text-align: center;
    background-color: var(--background-light);
    padding: 100px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background-color: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.program-card h3 {
    margin: 20px 20px 10px;
    color: var(--primary-dark);
}

.program-card p {
    padding: 0 20px;
    margin-bottom: 25px;
    color: var(--text-muted);
}

.program-card .btn-tertiary {
    margin: 0 20px 20px;
}

.benefits {
    background-color: var(--background-dark);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.benefits:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234CAF50' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    background-color: var(--text-light);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon img {
    width: 40px;
    height: 40px;
}

.benefit-item h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.trainers {
    text-align: center;
    background-color: var(--background-light);
    padding: 100px 0;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.trainer-card {
    background-color: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.trainer-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.trainer-card h3 {
    margin: 20px 20px 5px;
    color: var(--primary-dark);
}

.trainer-speciality {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trainer-card p {
    padding: 0 20px 20px;
    color: var(--text-muted);
}

.testimonials {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.7;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 50px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author p {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact {
    background-color: var(--background-light);
    padding: 100px 0;
}

.contact h2 {
    text-align: center;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.contact-info {
    padding-right: 20px;
}

.contact-info h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item, .hours-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item img, .hours-item img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.contact-form {
    background-color: var(--text-light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.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(76, 175, 80, 0.2);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-item h4 {
    color: var(--text-light);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.footer-item h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    display: block;
    margin-bottom: 15px;
}

.footer-item ul li {
    margin-bottom: 10px;
}

.footer-item ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-item ul li a:hover {
    color: var(--text-light);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.policy-page {
    background-color: var(--background-light);
}

.policy-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 50px 0;
    text-align: center;
}

.policy-header h1 {
    margin-bottom: 15px;
}

.policy-content {
    padding: 60px 0;
}

.policy-wrapper {
    background-color: var(--text-light);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.policy-section {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-date {
    text-align: right;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 20px;
}

.hexagon-pattern:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%234CAF50' fill-opacity='1'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.circular-pattern:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234CAF50' fill-opacity='1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10zm0-30c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10zm-30 0c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10zm0 30c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.diamond-pattern:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='64' viewBox='0 0 48 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M48 28v-4L36 12 24 24 12 12 0 24v4l4 4-4 4v4l12 12 12-12 12 12 12-12v-4l-4-4 4-4zM8 32l-6-6 10-10 10 10-6 6 6 6-10 10L2 38l6-6zm12 0l4-4 4 4-4 4-4-4zm12 0l-6-6 10-10 10 10-6 6 6 6-10 10-10-10 6-6z' fill='%234CAF50' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.data-types, .usage-grid, .protection-grid, .rights-accordion, .cookies-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.data-type, .usage-item, .protection-item, .cookie-type {
    background-color: var(--background-light);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.data-type h3, .usage-item h3, .protection-item h3, .cookie-type h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.data-type ul {
    list-style-type: disc;
    padding-left: 20px;
}

.data-type ul li {
    margin-bottom: 5px;
}

.rights-item {
    background-color: var(--background-light);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.rights-item h3 {
    background-color: var(--primary-light);
    color: var(--text-light);
    padding: 15px 20px;
    margin-bottom: 0;
    cursor: pointer;
    position: relative;
}

.rights-content {
    padding: 15px 20px;
}

.usage-rules .rule-item {
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 8px;
}

.odd-rule {
    background-color: var(--background-light);
}

.even-rule {
    background-color: var(--background-dark);
}

.usage-rules ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 15px 0;
}

.usage-rules ul li {
    margin-bottom: 8px;
}

.content-rights .rights-item {
    background-color: transparent;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 30px;
    border-radius: 0;
}

.cookie-type-card {
    background-color: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.cookie-type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-light);
    padding: 15px 20px;
}

.cookie-type-header h3 {
    color: var(--text-light);
    margin-bottom: 0;
}

.cookie-status {
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.cookie-status.essential {
    background-color: var(--success-color);
    color: var(--text-light);
}

.cookie-status.optional {
    background-color: var(--text-light);
    color: var(--text-dark);
}

.cookie-type-content {
    padding: 20px;
}

.cookie-examples h4, .cookie-duration p strong {
    color: var(--primary-dark);
}

.cookie-examples {
    margin: 15px 0;
}

.cookie-examples ul {
    list-style-type: disc;
    padding-left: 20px;
}

.cookie-examples ul li {
    margin-bottom: 5px;
}

.management-options, .browser-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.management-option, .browser-item {
    background-color: var(--background-light);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.management-option h3, .browser-item h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.cookie-note {
    background-color: rgba(76, 175, 80, 0.1);
    border-left: 3px solid var(--primary-color);
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 0 8px 8px 0;
}

.third-party-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.third-party-category {
    background-color: var(--background-light);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.third-party-category h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.contact-email {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 15px 0 25px;
}

.thankyou-page {
    background-color: var(--background-light);
}

.thankyou-content {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.thankyou-wrapper {
    background-color: var(--text-light);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.thankyou-icon {
    margin-bottom: 30px;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    position: relative;
    background-color: var(--success-color);
    border-radius: 50%;
    display: inline-block;
}

.checkmark-stem {
    position: absolute;
    width: 5px;
    height: 30px;
    background-color: var(--text-light);
    left: 40px;
    top: 22px;
    transform: rotate(45deg);
}

.checkmark-kick {
    position: absolute;
    width: 18px;
    height: 5px;
    background-color: var(--text-light);
    left: 26px;
    top: 44px;
    transform: rotate(45deg);
}

.thankyou-content h1 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.thankyou-message {
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-message p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-content h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.thankyou-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0 100px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        justify-content: center;
        max-width: 100%;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--text-light);
        width: 100%;
        height: calc(100vh - 70px);
        padding: 20px 0;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
        padding: 0 20px;
    }
    
    .nav-menu li a {
        display: block;
        width: 100%;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .policy-wrapper {
        padding: 25px;
    }
    
    .data-types, .usage-grid, .protection-grid, .cookies-types {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-wrapper {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .benefit-item, .testimonial-item, .step-item {
        padding: 20px;
    }
    
    .thankyou-cta {
        flex-direction: column;
    }
    
    .thankyou-cta .btn-primary, .thankyou-cta .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 375px) {
    section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .checkmark-circle {
        width: 60px;
        height: 60px;
    }
    
    .checkmark-stem {
        width: 4px;
        height: 22px;
        left: 30px;
        top: 18px;
    }
    
    .checkmark-kick {
        width: 13px;
        height: 4px;
        left: 20px;
        top: 34px;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
}