:root {
    --primary-color: #32CD32;
    --secondary-color: #FF7200;
    --dark-color: #1C1C1C;
    --light-color: #FFFFFF;
    --gray-light: #F5F5F5;
    --text-dark: #333333;
    --text-light: #777777;
    --border-color: #ddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
}

body {
    overflow-x: hidden;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--gray-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.page-header {
    background-color: var(--dark-color);
    padding: 15px 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 8px rgba(50,205,50,0.5);
}

.header-title {
    color: var(--secondary-color);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-back {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background-color: #28B428;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(50,205,50,0.3);
}

.legal-page-content {
    padding: 60px 20px;
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
}

.legal-container {
    max-width: 900px;
    width: 100%;
    background-color: var(--gray-light);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 50px;
}

.privacy-policy-section, .terms-of-use-section {
    text-align: left;
}

.privacy-policy-section h2, .terms-of-use-section h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.privacy-policy-section h2::after, .terms-of-use-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 120px;
    height: 5px;
    background-color: var(--secondary-color);
    border-radius: 3px;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.8;
    text-align: center;
}

.legal-item {
    margin-bottom: 35px;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-color);
}

.legal-item h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 18px;
    font-weight: 600;
}

.legal-item p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-item ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.legal-item ul li {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.legal-item ul li strong {
    color: var(--secondary-color);
}

.legal-item ul li::before {
    content: '\2022';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
    top: 0;
}

.legal-item a {
    font-weight: 500;
}

.last-updated {
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 40px;
    font-style: italic;
}


footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding-top: 60px;
    padding-bottom: 20px;
    border-top: 5px solid var(--primary-color);
    position: static;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px 30px;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-about .footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.footer-about .logo {
    font-size: 2.2rem;
    color: var(--secondary-color);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-about p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.footer-contact-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.schedule-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.schedule-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.schedule-list li i {
    color: var(--secondary-color);
}

.payment-methods h4 {
    font-size: 1.1rem;
    color: var(--light-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.payment-methods p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.payment-methods p i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--light-color);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-size: 1.3rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 15px rgba(50,205,50,0.4);
}

.footer-bottom {
    background-color: #0d0d0d;
    text-align: center;
    padding: 25px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom span {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-legal-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .page-header {
        padding: 15px 20px;
    }
    .header-title {
        font-size: 28px;
    }
    .legal-container {
        padding: 40px;
    }
    .privacy-policy-section h2, .terms-of-use-section h2 {
        font-size: 2.5rem;
    }
    .intro-text {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    .legal-item h3 {
        font-size: 1.6rem;
    }
    .legal-item p {
        font-size: 0.95rem;
    }
    .legal-item ul li {
        font-size: 0.9rem;
    }
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
    .footer-section h3 {
        font-size: 1.4rem;
    }
    .footer-about .logo {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    .btn-back {
        width: 100%;
        justify-content: center;
    }
    .legal-container {
        padding: 30px;
    }
    .privacy-policy-section h2, .terms-of-use-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    .intro-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .legal-item {
        padding: 25px;
    }
    .legal-item h3 {
        font-size: 1.4rem;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-about .footer-logo,
    .footer-contact-info p,
    .schedule-list li,
    .payment-methods p,
    .social-icons {
        justify-content: center;
    }
    .legal-item ul li {
        padding-left: 0;
        text-align: left;
    }
    .legal-item ul li::before {
        position: static;
        margin-right: 5px;
    }
}

@media (max-width: 480px) {
    .header-logo-img {
        width: 40px;
        height: 40px;
    }
    .header-title {
        font-size: 24px;
    }
    .legal-container {
        padding: 20px;
    }
    .privacy-policy-section h2, .terms-of-use-section h2 {
        font-size: 1.8rem;
    }
    .intro-text {
        font-size: 0.9rem;
    }
    .legal-item {
        padding: 20px;
    }
    .legal-item h3 {
        font-size: 1.2rem;
    }
    .legal-item p {
        font-size: 0.85rem;
    }
    .legal-item ul li {
        font-size: 0.8rem;
    }
    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }
}