* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0088cc;
    --secondary-color: #005580;
    --accent-color: #4CAF50;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #fff;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

header {
    padding: 20px 0;
    text-align: center;
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.logo {
    max-height: 60px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.swiper-container {
    width: 100%;
    height: 70vh;
    margin-top: -2px;
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination {
    position: absolute !important;
    bottom: 20px !important;
    z-index: 10;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background-color: rgba(0,0,0,0.3);
    padding: 30px;
    border-radius: 50%;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.7;
    margin: 0 6px;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

section {
    padding: 80px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0.3;
}

h1, h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

h1::after, h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.introduction {
    background-color: var(--light-bg);
}

.introduction p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.map-container {
    width: 100%;
    height: 450px;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    padding: 5px 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    border-color: var(--white);
    border-radius: 5px;
}

/* Legal pages specific styles */
.legal-content {
    padding: 60px 0;
}

.legal-text {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.legal-text h2 {
    color: var(--secondary-color);
    margin-top: 30px;
}

.legal-text ul {
    margin: 15px 0;
    padding-left: 40px;
    list-style: none;
}

.legal-text li {
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 5px;
}

.legal-text li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 5px;
    width: 70%;
    max-width: 800px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .swiper-container {
        height: 50vh;
    }
    
    section {
        padding: 40px 0;
    }
    
    h1, h2 {
        font-size: 1.8em;
    }
    
    .introduction p {
        font-size: 1em;
    }
    
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
    
    .modal-content {
        width: 90%;
        margin: 20% auto;
    }
}
