/* Privacy Policy Custom Styles */
.privacy-content {
    border-radius: 15px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.privacy-content h3 {
    color: #ffffff;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.4em;
    border-left: 4px solid #f05f40;
    padding-left: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.privacy-content p {
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.privacy-content ul {
    margin-bottom: 20px;
}

.privacy-content li {
    margin-bottom: 8px;
    list-style-type: none;
    position: relative;
    padding-left: 20px;
}

.privacy-content li:before {
    content: "▶";
    color: #f05f40;
    position: absolute;
    left: 0;
    top: 0;
}

.language-toggle-container .btn-group .btn {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    margin: 0 5px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.language-toggle-container .btn-group .btn.active,
.language-toggle-container .btn-group .btn:hover {
    background: rgba(240, 95, 64, 0.8);
    border-color: #f05f40;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 95, 64, 0.4);
}

.language-toggle-container .btn-group .btn i {
    margin-right: 8px;
}

/* Header Font Size */
.header-large {
    font-size: 3.5em;
}

.header-medium {
    font-size: 1.25em;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    background-position: center;
    background-image: url('../img/header.jpg');
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .header-content {
    position: relative;
    text-align: center;
    padding: 50px 15px;
    width: 100%;
    max-width: 1200px;
}

.hero-section .header-content .header-content-inner h1 {
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 50px;
}

.hero-section .header-content .header-content-inner hr {
    margin: 30px auto;
}

.hero-section .header-content .header-content-inner p {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .hero-section {
        min-height: 100vh;
    }
    
    .hero-section .header-content {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        padding: 0 50px;
    }
    
    .hero-section .header-content .header-content-inner {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-section .header-content .header-content-inner h1 {
        font-size: 65px;
    }
    
    .hero-section .header-content .header-content-inner p {
        font-size: 18px;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Semantic HTML improvements */
main {
    min-height: 100vh;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 20px;
        margin: 0 10px;
    }
    
    .privacy-content h3 {
        font-size: 1.2em;
    }
    
    .language-toggle-container .btn-group .btn {
        padding: 10px 20px;
        font-size: 14px;
        margin: 0 2px;
    }
    
    .header-large {
        font-size: 2.5em;
    }
}