@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #8BC34A;
    --primary-dark: #689F38;
    --primary-light: #DCEDC8;
    --accent: #8BC34A;
    --text: #333333;
    --text-light: #757575;
    --bg-light: #F9F9F9;
    --bg-dark: #263238;
    --white: #FFFFFF;
    --gray: #EEEEEE;
    --border: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header p {
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.accent {
    color: var(--accent);
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: var(--text);
    font-weight: 500;
    position: relative;
}

.main-nav ul li a:hover {
    color: var(--primary);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--primary);
    margin: 3px 0;
    transition: var(--transition);
}

.hero {
    padding: 150px 0 80px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.services {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: var(--primary);
}

.service-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.programs {
    padding: 80px 0;
    background-color: var(--white);
}

.programs-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.program-card {
    background-color: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.program-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.program-card p {
    margin-bottom: 20px;
}

.program-card ul {
    list-style: disc;
    padding-left: 20px;
}

.program-card ul li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.trainers {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.trainer-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.trainer-image {
    height: 300px;
    overflow: hidden;
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.trainer-card:hover .trainer-image img {
    transform: scale(1.1);
}

.trainer-card h3 {
    padding: 20px 20px 5px;
    font-size: 1.3rem;
}

.trainer-position {
    padding: 0 20px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 10px;
}

.trainer-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.reviews {
    padding: 80px 0;
    background-color: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-light);
    opacity: 0.5;
    line-height: 1;
}

.review-content {
    position: relative;
    z-index: 1;
}

.review-content p {
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--primary);
}

.author-info {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contacts {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contacts-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(139, 195, 74, 0.2);
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.info-item ul {
    list-style: none;
}

.info-item ul li {
    margin-bottom: 10px;
}

footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    display: inline-block;
}

.footer-nav, .footer-policies {
    flex: 1;
    min-width: 200px;
}

.footer-nav h3, .footer-policies h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-nav ul li, .footer-policies ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a, .footer-policies ul li a {
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-nav ul li a:hover, .footer-policies ul li a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.thank-you {
    padding: 150px 0 80px;
    background-color: var(--bg-light);
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.thank-you-message {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.thank-you-message p {
    margin-bottom: 20px;
}

.thank-you-message .btn-primary {
    margin-top: 20px;
}

.additional-info {
    background-color: var(--primary-light);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
}

.additional-info h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.additional-info ul {
    list-style: none;
}

.additional-info ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.additional-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.privacy-policy, .cookies-policy, .terms-policy {
    padding: 150px 0 80px;
    background-color: var(--bg-light);
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
}

.policy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.policy-header p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.policy-content {
    background-color: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.policy-section h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-section p, .policy-section ul, .policy-section ol {
    margin-bottom: 15px;
}

.policy-section ul, .policy-section ol {
    padding-left: 20px;
}

.policy-section ul li, .policy-section ol li {
    margin-bottom: 10px;
}

.policy-footer {
    text-align: center;
}

.cookie-intro {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.cookie-icon {
    flex: 0 0 100px;
}

.intro-text {
    flex: 1;
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.cookie-type {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cookie-table-container {
    overflow-x: auto;
    margin: 20px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
}

.cookie-table th, .cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.cookie-table th {
    background-color: var(--primary-light);
    color: var(--text);
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

.browser-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.browser-control {
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.cookie-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.terms-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--primary-light);
    border-radius: 10px;
}

.terms-index {
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.terms-index ul {
    column-count: 2;
    column-gap: 30px;
}

@media (max-width: 768px) {
    .terms-index ul {
        column-count: 1;
    }
}

.terms-index ul li {
    margin-bottom: 10px;
}

.terms-index ul li a {
    color: var(--text);
    transition: var(--transition);
}

.terms-index ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.terms-definitions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.term-definition {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.term-definition h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-list {
    margin-top: 20px;
}

.step-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.step-number {
    background-color: var(--primary);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-text {
    padding-top: 5px;
}

.contact-info-box {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-group {
    display: flex;
    margin-bottom: 10px;
}

.contact-label {
    font-weight: 600;
    min-width: 100px;
}

.left-border {
    border-left: 5px solid var(--primary);
    padding-left: 20px;
}

.right-border {
    border-right: 5px solid var(--primary);
    padding-right: 20px;
}

.diagonal-pattern {
    background-image: linear-gradient(45deg, var(--primary-light) 25%, transparent 25%, transparent 50%, var(--primary-light) 50%, var(--primary-light) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    padding: 20px;
    border-radius: 10px;
}

.wave-borders {
    position: relative;
    border-radius: 10px;
    padding: 20px;
}

.wave-borders::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: repeating-linear-gradient(
        45deg,
        var(--primary),
        var(--primary) 10px,
        transparent 10px,
        transparent 20px
    );
    border-radius: 10px 10px 0 0;
}

.wave-borders::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: repeating-linear-gradient(
        45deg,
        var(--primary),
        var(--primary) 10px,
        transparent 10px,
        transparent 20px
    );
    border-radius: 0 0 10px 10px;
}

.diamond-pattern {
    background: 
        linear-gradient(135deg, var(--primary-light) 25%, transparent 25%) -10px 0,
        linear-gradient(225deg, var(--primary-light) 25%, transparent 25%) -10px 0,
        linear-gradient(315deg, var(--primary-light) 25%, transparent 25%),
        linear-gradient(45deg, var(--primary-light) 25%, transparent 25%);
    background-size: 20px 20px;
    padding: 20px;
    border-radius: 10px;
}

.hexagon-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.hexagon-item {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.hexagon-item::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    transform: rotate(45deg);
}

.spiral-list {
    list-style: none;
    padding-left: 0;
}

.spiral-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.spiral-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.rotating-list {
    list-style: none;
    padding-left: 0;
}

.rotating-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.rotating-list li::before {
    content: "⟳";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.right-item {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    border-top: 3px solid var(--primary);
}

.legal-list {
    list-style: none;
    padding-left: 0;
}

.legal-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.legal-list li::before {
    content: "§";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.wave-background {
    background-color: var(--bg-light);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264.888-.14 1.055-.784 2.22-1.522 3.238-2.302 1.02-.781 1.907-1.545 2.902-2.205 1.664-1.11 3.328-2.22 4.992-3.33.83-.554 1.607-1.163 2.43-1.728a67.574 67.574 0 0 0 2.566-1.76c1.65-1.176 3.247-2.406 4.942-3.556 1.695-1.15 3.43-2.23 5.207-3.27.916-.544 1.857-1.05 2.81-1.54.952-.492 1.927-.94 2.907-1.374a72.567 72.567 0 0 1 2.87-1.154c.963-.36 1.93-.701 2.9-1.022.98-.323 1.958-.703 2.94-1.01.463-.147.93-.273 1.397-.391.496-.126.984-.3 1.48-.313 1.017-.015 2.03.143 3.003.414.99.273 1.95.642 2.876 1.074a28.329 28.329 0 0 1 2.673 1.475c.858.546 1.69 1.12 2.49 1.752.802.631 1.535 1.35 2.266 2.06.73.709 1.467 1.408 2.2 2.111.734.703 1.476 1.398 2.217 2.094l2.22 2.094c.74.696 1.482 1.391 2.215 2.095.734.703 1.47 1.402 2.2 2.11.73.71 1.464 1.429 2.265 2.06.8.631 1.633 1.205 2.49 1.752a28.317 28.317 0 0 0 2.674 1.475c.925.432 1.886.8 2.875 1.075.972.27 1.986.428 3.002.414.495-.014.983-.188 1.48-.314.465-.118.932-.244 1.396-.39.982-.308 1.96-.688 2.94-1.011.97-.322 1.938-.662 2.9-1.022.984-.368 1.94-.793 2.87-1.154.98-.433 1.956-.882 2.908-1.374.952-.49 1.894-.996 2.806-1.54 1.778-1.042 3.514-2.12 5.208-3.269 1.695-1.15 3.292-2.38 4.941-3.557a67.11 67.11 0 0 1 2.567-1.76c.824-.565 1.602-1.174 2.43-1.728 1.665-1.11 3.33-2.22 4.993-3.33.995-.66 1.882-1.424 2.902-2.205 1.02-.78 2.184-1.518 3.238-2.302.168-.124.53-.26.887-.14C100 14.79 100 15.242 100 15.367v4.297H0V.196c.515.122 1.124.317 1.528.508a9.821 9.821 0 0 0 1.387.489c.481.136.962.267 1.447.375.485.107.972.198 1.463.26.491.063.985.097 1.48.096.494 0 .989-.033 1.48-.096.49-.062.977-.153 1.462-.26.485-.108.966-.239 1.447-.376a9.837 9.837 0 0 1 1.387-.488c.404-.19 1.013-.386 1.53-.508 1.387-.326 2.77-.63 4.164-.878 1.395-.247 2.788-.44 4.188-.548 1.4-.11 2.8-.11 4.2.082a12.92 12.92 0 0 1 4.096 1.027c.674.27 1.32.606 1.954.97.633.362 1.246.75 1.848 1.157.603.408 1.186.84 1.76 1.288.573.447 1.144.904 1.675 1.419.53.516 1.02 1.088 1.52 1.643.5.554.985 1.12 1.458 1.697.472.576.92 1.172 1.353 1.78a16.46 16.46 0 0 1 1.192 1.895c.37.659.704 1.334 1.007 2.023.303.689.57 1.392.804 2.104.234.712.438 1.433.603 2.16.166.728.296 1.462.383 2.2.087.737.13 1.478.131 2.22 0 .742-.043 1.484-.13 2.22a18.337 18.337 0 0 1-.384 2.2c-.165.727-.37 1.448-.603 2.16a17.687 17.687 0 0 1-.803 2.105c-.303.688-.636 1.364-1.008 2.022a16.436 16.436 0 0 1-1.192 1.894c-.432.609-.88 1.205-1.353 1.78-.472.577-.958 1.143-1.458 1.698-.5.554-.99 1.127-1.52 1.642-.53.516-1.103.972-1.675 1.42-.573.447-1.156.88-1.76 1.288-.6.407-1.214.795-1.847 1.156-.635.365-1.28.7-1.954.972-1.342.54-2.719.868-4.096 1.026-1.4.191-2.8.116-4.2.083-1.4-.034-2.793-.3-4.188-.549a143.11 143.11 0 0 1-4.166-.878C21.184 14.79 21.184 15.242 21.184 20z' fill='%23B2FF59' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
    padding: 20px;
    border-radius: 10px;
}

.diagonal-background {
    background-color: var(--bg-light);
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238BC34A' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
    padding: 20px;
    border-radius: 10px;
}

.circle-pattern {
    background-color: var(--bg-light);
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238BC34A' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    padding: 20px;
    border-radius: 10px;
}

.checkered-pattern {
    background-color: var(--bg-light);
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238BC34A' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M0 0h20v20H0V0zm20 20h20v20H20V20z'/%3E%3C/g%3E%3C/svg%3E");
    padding: 20px;
    border-radius: 10px;
}

.gradient-border {
    border: 2px solid transparent;
    border-radius: 10px;
    background-image: linear-gradient(var(--white), var(--white)), 
                      linear-gradient(to right, var(--primary-light), var(--primary), var(--primary-light));
    background-origin: border-box;
    background-clip: content-box, border-box;
    padding: 20px;
}

.staggered-blocks {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--bg-light);
}

.staggered-blocks::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-light) 25%, transparent 25%, transparent 75%, var(--primary-light) 75%, var(--primary-light)) 0 0,
                linear-gradient(45deg, var(--primary-light) 25%, transparent 25%, transparent 75%, var(--primary-light) 75%, var(--primary-light)) 10px 10px;
    background-size: 20px 20px;
    opacity: 0.1;
    border-radius: 10px;
    z-index: 0;
}

.staggered-blocks > * {
    position: relative;
    z-index: 1;
}

.rotating-elements {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.rotating-elements::before, .rotating-elements::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border: 10px solid var(--primary-light);
    border-radius: 50%;
    opacity: 0.1;
}

.rotating-elements::before {
    top: -50px;
    right: -50px;
}

.rotating-elements::after {
    bottom: -50px;
    left: -50px;
}

@media screen and (max-width: 1024px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content, .hero .container {
        flex-direction: column;
    }
    
    .about-image, .hero-image {
        order: -1;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 0;
        margin-bottom: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
    
    .terms-index ul {
        column-count: 1;
    }
    
    .cookie-intro {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card, .program-card, .trainer-card, .review-card {
        min-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    animation: slideUp 0.8s ease forwards;
}

.scale-in {
    animation: scaleIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}