@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --text-color: #333333;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --border-color: #dee2e6;
    --hover-color: #c1121f;
    --shadow: 0 4px 8px 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: 'Exo 2', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--hover-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 1rem;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

header {
    background-color: rgba(33, 37, 41, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: white;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: var(--transition);
}

.hero {
    display: flex;
    align-items: center;
    min-height: 600px;
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 0 50px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: auto;
}

.about {
    padding: 80px 0;
    background-color: var(--light-color);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.programs {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.programs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.programs h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.program-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.program-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.program-card h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
    padding: 0 20px;
    color: var(--primary-color);
}

.program-card p {
    padding: 0 20px;
    margin-bottom: 1.5rem;
}

.program-benefits {
    padding: 0 20px 20px;
    font-size: 0.95rem;
}

.program-benefits li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.program-benefits li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.benefits {
    padding: 80px 0;
    background-color: var(--light-color);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.benefits h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.benefit-item img {
    border-radius: 8px;
    margin-bottom: 20px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trainers {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.trainers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.trainers h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.trainer-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.trainer-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.trainer-card h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    padding: 0 15px;
    color: var(--dark-color);
}

.trainer-spec {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.trainer-card p {
    padding: 0 20px 20px;
    text-align: left;
}

.testimonials {
    padding: 80px 0;
    background-color: var(--light-color);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    display: flex;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 30px;
    border: 5px solid var(--light-gray);
}

.testimonial-content {
    flex: 1;
}

.testimonial-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--light-gray);
    position: absolute;
    top: -20px;
    left: -10px;
    z-index: -1;
}

.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info h3, .contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-info ul {
    margin-bottom: 20px;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info strong {
    margin-right: 10px;
    color: var(--primary-color);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.footer-nav h4, .footer-policies h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
}

.footer-nav h4::after, .footer-policies h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    left: 0;
    bottom: -8px;
}

.footer-nav ul, .footer-policies ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a, .footer-policies a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-nav a:hover, .footer-policies a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact address {
    font-style: normal;
    line-height: 1.8;
    color: var(--light-gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--light-gray);
}

.thankyou-page {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thankyou-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thankyou-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.thankyou-message {
    margin-bottom: 40px;
    text-align: left;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-list {
    margin: 20px 0;
    list-style: none;
}

.contact-list li {
    margin-bottom: 10px;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.next-steps h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.next-steps ol {
    margin-left: 20px;
}

.next-steps li {
    margin-bottom: 15px;
}

.return-home {
    margin-top: 40px;
}

.policy-page {
    padding: 60px 0;
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.policy-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.policy-date {
    font-style: italic;
    color: var(--gray-color);
}

.policy-content {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.policy-section {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 30px;
}

.policy-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.policy-section h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 25px 0 15px;
}

.policy-footer {
    text-align: center;
    margin-top: 30px;
}

.policy-toc {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.policy-toc h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.policy-toc ol {
    margin-left: 20px;
}

.policy-toc li {
    margin-bottom: 8px;
}

.policy-toc a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.policy-toc a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.policy-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.policy-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px 0;
}

.policy-column h3 {
    color: var(--secondary-color);
}

.policy-list {
    margin-left: 20px;
}

.policy-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.policy-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.policy-grid-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
}

.policy-tree {
    margin: 20px 0;
}

.policy-tree-branch {
    margin-bottom: 25px;
}

.policy-tree-node {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 10px;
}

.policy-tree-details {
    padding-left: 20px;
    border-left: 2px solid var(--light-gray);
    margin-left: 15px;
}

.policy-security-shields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.policy-shield {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.policy-shield h3 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.policy-shield ul {
    list-style: none;
}

.policy-shield li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.policy-shield li::before {
    content: '🛡️';
    position: absolute;
    left: 0;
    top: 0;
}

.policy-note {
    background-color: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #ffc107;
}

.policy-rights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.policy-right {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
    text-align: center;
}

.policy-right h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.policy-exercising-rights {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.policy-health-data {
    margin: 20px 0;
}

.policy-data-category, .policy-data-usage {
    margin-bottom: 20px;
}

.policy-consent {
    background-color: #d1e7dd;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #198754;
}

.policy-timeline {
    position: relative;
    padding-left: 30px;
    margin: 20px 0;
}

.policy-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--light-gray);
}

.policy-version {
    position: relative;
    margin-bottom: 20px;
    padding-left: 25px;
}

.policy-version::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.policy-version-date {
    font-weight: 600;
    color: var(--dark-color);
    margin-right: 10px;
}

.policy-version-desc {
    color: var(--gray-color);
}

.policy-contact {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
}

.policy-contact-details {
    margin: 20px 0;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.cookies-diagram {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0 40px;
}

.diagram-item {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
}

.diagram-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.diagram-text h3 {
    margin-top: 0;
    color: var(--secondary-color);
}

.cookies-types {
    margin: 20px 0;
}

.cookie-type {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--light-gray);
}

.cookie-type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cookie-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.required {
    background-color: #dc3545;
    color: white;
}

.badge.optional {
    background-color: #6c757d;
    color: white;
}

.cookie-example {
    font-style: italic;
    color: var(--gray-color);
    margin: 10px 0;
}

.cookie-lifetime {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-top: 10px;
}

.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(--light-gray);
}

.cookie-table th {
    background-color: var(--secondary-color);
    color: white;
}

.cookie-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.browser-instructions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.browser-instruction {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
}

.browser-instruction h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.browser-instruction ol {
    margin-left: 20px;
}

.browser-instruction li {
    margin-bottom: 8px;
}

.terms-welcome {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid var(--light-gray);
}

.terms-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    border-bottom: 1px solid var(--light-gray);
}

.terms-section-header h2 {
    margin-bottom: 0;
}

.terms-section-toggle {
    width: 24px;
    height: 24px;
    position: relative;
}

.terms-section-toggle::before, .terms-section-toggle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.terms-section-toggle::after {
    transform: translateY(-50%) rotate(90deg);
    transition: var(--transition);
}

.terms-section-content {
    padding: 20px 0;
}

.terms-definitions {
    margin: 20px 0;
}

.term-definition {
    display: flex;
    margin-bottom: 15px;
}

.term {
    flex: 0 0 150px;
    font-weight: 600;
    color: var(--secondary-color);
}

.definition {
    flex: 1;
}

.terms-subsection {
    margin-bottom: 25px;
}

.terms-important-notice {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #dc3545;
}

.terms-info-block {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.terms-list {
    margin-left: 20px;
}

.terms-list li {
    margin-bottom: 10px;
}

.terms-prohibited-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.prohibited-action {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.prohibition-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

.terms-health-warning {
    background-color: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #dc3545;
}

.terms-contact-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-content, .contact-content {
        flex-direction: column;
    }
    
    .programs-grid, .benefits-grid, .trainers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .policy-columns, .policy-grid, .policy-security-shields, .browser-instructions {
        grid-template-columns: 1fr;
    }
    
    .policy-rights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        padding: 40px 0;
    }
    
    .hero-content {
        padding: 0 20px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .about-content, .testimonial-card {
        flex-direction: column;
    }
    
    .testimonial-card img {
        margin: 0 auto 20px;
    }
    
    .testimonial-content {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .programs-grid, .benefits-grid, .trainers-grid, .footer-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .policy-rights {
        grid-template-columns: 1fr;
    }
    
    .terms-prohibited-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    .term-definition {
        flex-direction: column;
    }
    
    .term {
        margin-bottom: 5px;
    }
}