@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --primary-color: #8a2be2; 
    --secondary-color: #ffcba4; 
    --primary-dark: #5e35b1;
    --secondary-light: #ffddc1;
    --secondary-dark: #ffb080;
    --text-color: #333333;
    --background-color: #f9f5ff;
    --light-color: #ffffff;
    --dark-color: #222222;
    --accent-color: #ff6b6b;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --border-radius: 10px;
    --box-shadow: 0 5px 15px rgba(138, 43, 226, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comfortaa', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Philosopher', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--light-color);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--light-color);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    z-index: -1;
    transition: var(--transition);
    transform: scaleX(0);
    transform-origin: right;
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.site-header {
    background-color: var(--light-color);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hexagon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.hexagon-logo {
    width: 200px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.hexagon-logo h1 {
    color: var(--light-color);
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.2;
}

.main-navigation ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0.5rem 0;
}

.main-navigation a {
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.main-navigation a:hover::after {
    transform: scaleX(1);
}

section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title.left {
    text-align: left;
}

.section-title.right {
    text-align: right;
}

.section-title.center {
    text-align: center;
}

.title-circle, .title-hexagon, .title-oval, .title-triangle, .title-diamond {
    display: inline-block;
    padding: 1.5rem 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.title-circle {
    background-color: var(--secondary-light);
    border-radius: 50%;
}

.title-hexagon {
    background-color: var(--primary-light);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.title-oval {
    background-color: var(--secondary-color);
    border-radius: 50% / 100%;
    padding: 2rem 3.5rem;
}

.title-triangle {
    background-color: var(--primary-light);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    padding: 2rem 3rem;
}

.title-diamond {
    background-color: var(--secondary-light);
    transform: rotate(45deg);
    padding: 2rem 2rem;
}

.title-diamond h2 {
    transform: rotate(-45deg);
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(255, 203, 164, 0.1));
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-top: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.diagonal-section {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 203, 164, 0.2), rgba(138, 43, 226, 0.05));
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.programs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.program-card p {
    padding: 0 1.5rem 1.5rem;
}

.wave-section {
    position: relative;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(255, 203, 164, 0.2));
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.wave-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f9f5ff' fill-opacity='1' d='M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,208C1248,171,1344,117,1392,90.7L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

.benefits-container {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.benefit-column {
    flex: 1;
}

.benefit-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transform: rotate(2deg);
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-item {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.circular-section {
    background: linear-gradient(135deg, rgba(255, 203, 164, 0.3), rgba(138, 43, 226, 0.1));
    border-radius: 50% 50% 0 0 / 100px;
    padding-top: 8rem;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-bubble {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    position: relative;
}

.testimonial-content {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 20px 20px 0;
    border-style: solid;
    border-color: var(--light-color) transparent transparent;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-author p {
    font-weight: 700;
    color: var(--primary-dark);
}

.zigzag-section {
    position: relative;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(255, 203, 164, 0.1));
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.instructors-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.instructor-card {
    display: flex;
    gap: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.instructor-card.reverse {
    flex-direction: row-reverse;
}

.instructor-image {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    overflow: hidden;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instructor-card:hover .instructor-image img {
    transform: scale(1.1);
}

.instructor-info {
    flex: 2;
    padding: 2rem;
}

.instructor-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.instructor-role {
    color: var(--primary-dark);
    font-style: italic;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-section {
    background: linear-gradient(135deg, rgba(255, 203, 164, 0.2), rgba(138, 43, 226, 0.1));
    border-radius: var(--border-radius);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.contact-container {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info ul {
    margin-bottom: 2rem;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.contact-info span {
    font-weight: 700;
    color: var(--primary-dark);
    margin-right: 0.5rem;
}

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-top: 2rem;
}

.contact-form-container {
    flex: 1;
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-container h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-form-container p {
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: 'Comfortaa', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group.consent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group.consent input {
    width: auto;
}

.form-group.consent label {
    font-size: 0.9rem;
}

.site-footer {
    background-color: var(--primary-dark);
    color: var(--light-color);
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo h3 {
    color: var(--light-color);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--secondary-light);
    margin-bottom: 1rem;
}

.footer-description {
    margin-bottom: 2rem;
    line-height: 1.5;
}

.footer-column h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-nav, .contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a {
    color: var(--light-color);
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-section {
    text-align: center;
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.thankyou-content {
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-circle {
    width: 100px;
    height: 100px;
    background-color: var(--success-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
}

.thanks-check {
    width: 40px;
    height: 70px;
    border-right: 8px solid white;
    border-bottom: 8px solid white;
    transform: rotate(45deg);
    margin-top: -10px;
}

.thankyou-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.response-time {
    font-style: italic;
    margin-bottom: 2rem;
    color: #666;
}

.next-steps, .benefits-reminder {
    margin-bottom: 2rem;
    text-align: left;
}

.next-steps h3, .benefits-reminder h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.next-steps ul, .benefits-reminder ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.next-steps li, .benefits-reminder li {
    margin-bottom: 0.5rem;
    position: relative;
    list-style-type: disc;
}

.policy-section {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.policy-container {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 3rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.policy-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-icon::before {
    content: '';
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 5v6c0 5.5 3.8 10.7 9 12 5.2-1.3 9-6.5 9-12V5l-9-4zm0 5c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3zm0 10c-2.1 0-4-1.3-4.8-3.2.8-.5 5.8-1.8 9.6 0-.8 1.9-2.7 3.2-4.8 3.2z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.cookies-icon::before {
    content: '';
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 24'%3E%3Cpath d='M21.95 10.99c-1.79-.03-3.7-1.95-2.68-4.22c-2.98 1-5.77-1.59-5.19-4.56C6.95.71 2 6.58 2 12c0 5.52 4.48 10 10 10c5.89 0 10.54-5.08 9.95-11.01zM8.5 15c-.83 0-1.5-.67-1.5-1.5S7.67 12 8.5 12s1.5.67 1.5 1.5S9.33 15 8.5 15zm2-5C9.67 10 9 9.33 9 8.5S9.67 7 10.5 7s1.5.67 1.5 1.5s-.67 1.5-1.5 1.5zm4.5 6c-.55 0-1-.45-1-1s.45-1 1-1s1 .45 1 1s-.45 1-1 1z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.terms-icon::before {
    content: '';
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 24'%3E%3Cpath d='M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm2 14H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.policy-header h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
}

.policy-update {
    color: #666;
    font-style: italic;
}

.policy-navigation {
    margin-bottom: 3rem;
}

.policy-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.policy-navigation a {
    display: block;
    padding: 0.8rem 1.5rem;
    background-color: #f5f5f5;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.policy-navigation a:hover {
    background-color: var(--primary-light);
    color: var(--light-color);
}

.circle-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.circle-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
}

.circle-nav span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--light-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.terms-nav-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.terms-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    background-color: #f5f5f5;
    transition: var(--transition);
}

.terms-nav-item.active, .terms-nav-item:hover {
    background-color: var(--primary-light);
    color: var(--light-color);
}

.terms-nav-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
    background-color: #ddd;
    border-radius: 50%;
}

.policy-section-block {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
    position: relative;
}

.section-decoration {
    position: absolute;
    top: 0;
    left: -50px;
    width: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.decoration-element {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin: 10px 0;
}

.cookies-decoration {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.cookie-crumb {
    width: 15px;
    height: 15px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin: 10px 0;
}

.terms-decoration {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.terms-shape {
    width: 20px;
    height: 20px;
    background-color: var(--primary-light);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    margin: 10px 0;
}

.policy-section-block h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.policy-section-block h4 {
    color: var(--primary-dark);
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.data-category, .usage-purpose, .protection-measure, .right-item {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.data-category h4, .usage-purpose h4, .protection-measure h4, .right-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.purpose-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary-light);
    border-radius: 50%;
    margin-right: 1rem;
}

.usage-purpose {
    display: flex;
    align-items: flex-start;
}

.purpose-description {
    flex: 1;
}

.rights-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.contact-info ul {
    margin: 1rem 0;
}

.contact-info span {
    font-weight: bold;
    margin-right: 0.5rem;
}

.cookies-explanation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.browser-settings {
    margin: 2rem 0;
}

.browser-instructions {
    margin-bottom: 2rem;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.browser-instructions h5 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.browser-instructions ol {
    padding-left: 1.5rem;
}

.browser-instructions li {
    margin-bottom: 0.5rem;
    list-style-type: decimal;
}

.cookies-note {
    background-color: #fff3e0;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    border-left: 5px solid var(--warning-color);
}

.cookie-types-list {
    padding-left: 1.5rem;
}

.cookie-types-list li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.cookies-table-container {
    margin: 2rem 0;
}

.cookies-category {
    margin-bottom: 2rem;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.cookie-examples {
    margin-top: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.cookie-examples ul {
    padding-left: 1.5rem;
}

.cookie-examples li {
    margin-bottom: 0.5rem;
    list-style-type: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-box {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service-box:hover {
    background-color: var(--primary-light);
    color: var(--light-color);
}

.service-box:hover h4 {
    color: var(--light-color);
}

.service-notes {
    margin-top: 2rem;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color);
}

.service-notes h4 {
    margin-bottom: 1rem;
}

.service-notes ul {
    padding-left: 1.5rem;
}

.service-notes li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.requirement-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background-color: var(--success-color);
    border-radius: 50%;
    margin-right: 1rem;
    position: relative;
}

.requirement-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 6px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.medical-disclaimer {
    background-color: #ffebee;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    border-left: 5px solid var(--error-color);
}

.payment-terms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.payment-policy, .cancellation-policy, .refund-policy {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.payment-policy h4, .cancellation-policy h4, .refund-policy h4 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.payment-policy ul, .cancellation-policy ul, .refund-policy ul {
    padding-left: 1.5rem;
}

.payment-policy li, .cancellation-policy li, .refund-policy li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.liability-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.assumption-risk, .waiver-liability, .limitation-warranties {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.termination-effects {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

.final-provisions {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
}

.contact-for-questions {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 5px solid var(--success-color);
}

.return-home {
    text-align: center;
    margin: 3rem 0 0;
}

@media (max-width: 1200px) {
    section {
        padding: 4rem 1.5rem;
    }
    
    .hero-section {
        padding: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .instructor-card {
        flex-direction: column;
    }
    
    .instructor-card.reverse {
        flex-direction: column;
    }
    
    .instructor-image {
        max-width: 100%;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        flex: none;
        width: 100%;
    }
    
    .benefits-container {
        flex-direction: column;
    }
    
    .benefit-column, .benefit-image {
        flex: none;
        width: 100%;
    }
    
    .benefit-image {
        margin: 2rem 0;
    }
    
    .policy-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .main-navigation ul {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 2rem;
    }
    
    .policy-section {
        padding: 4rem 1rem;
    }
    
    .policy-navigation ul {
        flex-direction: column;
    }
    
    .rights-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hexagon-logo {
        width: 160px;
        height: 100px;
    }
    
    .hexagon-logo h1 {
        font-size: 1.2rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-bubble {
        min-width: 100%;
    }
    
    .policy-container {
        padding: 1.5rem;
    }
    
    .policy-header h2 {
        font-size: 1.8rem;
    }
    
    .policy-section-block h3 {
        font-size: 1.5rem;
    }
    
    .cookies-explanation, .payment-terms {
        grid-template-columns: 1fr;
    }
    
    .terms-nav-container {
        flex-direction: column;
        align-items: center;
    }
    
    .terms-nav-item {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 375px) {
    .hexagon-logo {
        width: 140px;
        height: 80px;
    }
    
    .hexagon-logo h1 {
        font-size: 1rem;
    }
    
    .main-navigation ul {
        justify-content: space-around;
    }
    
    .main-navigation a {
        font-size: 0.9rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .policy-container {
        padding: 1rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .title-circle, .title-hexagon, .title-oval, .title-triangle, .title-diamond {
        padding: 1rem 2rem;
    }
}