* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #ECF0F1;
    color: #2C3E50;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: #2C3E50;
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: #E74C3C;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #F39C12;
}

.btn {
    display: inline-block;
    background-color: #E74C3C;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #F39C12;
    color: #fff;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(44, 62, 80, 0.95);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #F39C12;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 25px;
}

.nav ul li a {
    color: #ECF0F1;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: #F39C12;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: #ECF0F1;
    margin: 3px 0;
    transition: 0.3s;
}

section {
    padding: 80px 0;
}

.footer {
    background-color: #2C3E50;
    color: #ECF0F1;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #F39C12;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    flex: 1;
    min-width: 200px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
}

.footer-links a {
    color: #ECF0F1;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F39C12;
}

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(236, 240, 241, 0.1);
}

.privacy-section,
.terms-section,
.cookie-section {
    background-color: #fff;
    padding: 100px 0 80px;
}

.privacy-section h2,
.terms-section h2,
.cookie-section h2 {
    margin-top: 40px;
    color: #2C3E50;
    border-bottom: 2px solid #E74C3C;
    padding-bottom: 10px;
}

.privacy-section ul,
.terms-section ul,
.cookie-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-section li,
.terms-section li,
.cookie-section li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(44, 62, 80, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .nav ul li {
        margin: 15px 0;
    }
    
    .burger {
        display: flex;
    }
    
    .burger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
}

