/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #37474F;
    background-color: #FAFAFA;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 300;
}

h2 {
    font-size: 2.5rem;
    font-weight: 400;
}

h3 {
    font-size: 1.8rem;
    font-weight: 400;
}

h4 {
    font-size: 1.4rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #78909C;
    color: white;
    border-color: #78909C;
}

.btn-primary:hover {
    background-color: #607D8B;
    border-color: #607D8B;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #78909C;
    border-color: #78909C;
}

.btn-secondary:hover {
    background-color: #78909C;
    color: white;
    transform: translateY(-2px);
}

.btn-form {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #B0BEC5;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #37474F;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #78909C;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #37474F;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 100vh;
    padding: 100px 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #37474F;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #78909C;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #607D8B;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #37474F;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #607D8B;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    color: #78909C;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
    color: #37474F;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #607D8B;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Classes Section */
.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.class-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.class-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.class-content {
    padding: 2rem;
}

.class-content h3 {
    margin-bottom: 1rem;
    color: #37474F;
}

.class-features {
    list-style: none;
    margin: 1.5rem 0;
}

.class-features li {
    padding: 0.3rem 0;
    color: #607D8B;
    position: relative;
    padding-left: 1.5rem;
}

.class-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #78909C;
    font-weight: bold;
}

.class-schedule {
    background: #B0BEC5;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    margin-top: 1.5rem;
}

.schedule-time {
    font-weight: 600;
    color: #37474F;
}

/* Equipment Section */
.equipment {
    background: white;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.equipment-item {
    text-align: center;
    padding: 2rem;
}

.equipment-icon {
    color: #78909C;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.equipment-item h3 {
    margin-bottom: 1rem;
    color: #37474F;
}

.equipment-item p {
    color: #607D8B;
    line-height: 1.6;
}

/* Trainers Section */
.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.trainer-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-5px);
}

.trainer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.trainer-info {
    padding: 2rem;
}

.trainer-info h3 {
    margin-bottom: 0.5rem;
    color: #37474F;
}

.trainer-title {
    color: #78909C;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trainer-credentials {
    color: #90A4AE;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.trainer-info p:last-child {
    color: #607D8B;
    line-height: 1.6;
}

/* Results Section */
.results {
    background: white;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.result-item {
    background: #FAFAFA;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #78909C;
}

.result-quote p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #37474F;
    margin-bottom: 1rem;
    font-style: italic;
}

.result-quote cite {
    color: #78909C;
    font-weight: 600;
    font-style: normal;
}

.result-achievements {
    margin-top: 2rem;
}

.result-achievements h4 {
    color: #37474F;
    margin-bottom: 1rem;
}

.result-achievements ul {
    list-style: none;
}

.result-achievements li {
    padding: 0.3rem 0;
    color: #607D8B;
    position: relative;
    padding-left: 1.5rem;
}

.result-achievements li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #78909C;
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #37474F;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #F5F5F5;
}

.faq-icon {
    font-size: 1.5rem;
    color: #78909C;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Contact Section */
.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: #37474F;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    color: #78909C;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-details p {
    margin: 0;
    line-height: 1.6;
    color: #607D8B;
}

.contact-form-container {
    background: #FAFAFA;
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: #37474F;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #37474F;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #B0BEC5;
    border-radius: 6px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #78909C;
    box-shadow: 0 0 0 3px rgba(120, 144, 156, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #37474F;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo .logo {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #B0BEC5;
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #B0BEC5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #607D8B;
    padding-top: 1rem;
    text-align: center;
    color: #B0BEC5;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #78909C;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #607D8B;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(250, 250, 250, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        padding: 120px 20px 50px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trainers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Transitions */
.smooth-transition {
    transition: all 0.3s ease;
}

 /* Success page specific styles */
.success-page {
    min-height: 100vh;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.success-title {
    color: #37474F;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.success-subtitle {
    color: #78909C;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.success-message {
    margin-bottom: 3rem;
    text-align: left;
}

.success-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #607D8B;
    margin-bottom: 1rem;
}

.next-steps {
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #37474F;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    text-align: center;
    padding: 1.5rem;
    background: #FAFAFA;
    border-radius: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #78909C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-item h4 {
    margin-bottom: 0.5rem;
    color: #37474F;
}

.step-item p {
    font-size: 0.9rem;
    color: #607D8B;
}

.contact-reminder {
    margin-bottom: 3rem;
    text-align: left;
}

.contact-reminder h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #37474F;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: #FAFAFA;
    border-radius: 8px;
    border-left: 4px solid #78909C;
}

.contact-option .contact-icon {
    margin-right: 1rem;
    color: #78909C;
}

.contact-option h4 {
    margin-bottom: 0.5rem;
    color: #37474F;
}

.contact-option p {
    margin: 0;
    color: #607D8B;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .success-content {
        padding: 2rem 1.5rem;
    }

    .success-title {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* Legal page specific styles */
.legal-page {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    color: #37474F;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #78909C;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: #37474F;
    border-bottom: 2px solid #B0BEC5;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: #607D8B;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-section p {
    line-height: 1.7;
    color: #607D8B;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    line-height: 1.6;
    color: #607D8B;
    margin-bottom: 0.5rem;
}

.cookie-table {
    background: #FAFAFA;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1rem;
    padding: 0.75rem;
    border-bottom: 1px solid #B0BEC5;
    align-items: center;
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-name {
    font-weight: 600;
    color: #37474F;
    font-family: monospace;
    background: #E8EAF6;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.cookie-purpose {
    color: #607D8B;
}

.cookie-duration {
    color: #78909C;
    font-weight: 600;
    text-align: center;
}

.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.browser-item {
    background: #FAFAFA;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #78909C;
}

.browser-item h4 {
    color: #37474F;
    margin-bottom: 0.5rem;
}

.browser-item p {
    color: #607D8B;
    font-family: monospace;
    font-size: 0.9rem;
    margin: 0;
}

.contact-info {
    background: #FAFAFA;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #78909C;
}

.contact-info p {
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 15px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-section ul {
        margin-left: 1rem;
    }

    .cookie-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: left;
    }

    .cookie-duration {
        text-align: left;
    }

    .browser-instructions {
        grid-template-columns: 1fr;
    }
}

/* Legal page specific styles */
.legal-page {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    color: #37474F;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #78909C;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: #37474F;
    border-bottom: 2px solid #B0BEC5;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: #607D8B;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-section p {
    line-height: 1.7;
    color: #607D8B;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    line-height: 1.6;
    color: #607D8B;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #FAFAFA;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #78909C;
}

.contact-info p {
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 15px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-section ul {
        margin-left: 1rem;
    }
}

/* Legal page specific styles */
.legal-page {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    color: #37474F;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #78909C;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: #37474F;
    border-bottom: 2px solid #B0BEC5;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: #607D8B;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-section p {
    line-height: 1.7;
    color: #607D8B;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    line-height: 1.6;
    color: #607D8B;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #FAFAFA;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #78909C;
}

.contact-info p {
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 15px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-section ul {
        margin-left: 1rem;
    }
}