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

:root {
    --primary-color: #2563eb;
    --secondary-color: #059669;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    margin-right: 3rem;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo i {
    font-size: 2rem;
    color: var(--secondary-color);
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: auto;
    padding-left: 2rem;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Section Icon */
.section-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h4 {
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* Energy Sources Grid */
.energy-sources-grid,
.recycling-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.energy-source-card,
.recycling-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.energy-source-card:hover,
.recycling-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.energy-icon,
.recycling-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.energy-source-card h4,
.recycling-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.energy-source-card p,
.recycling-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(5, 150, 105, 0.8)),
                url('../images/banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.8;
}

/* Section Styles */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background-color: #f8fafc;
    padding: 5rem 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-visual {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
}

.about-visual i {
    font-size: 8rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.about-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 4px solid #f59e0b;
    display: inline-block;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Activities Section */
.activities-section {
    background: var(--white);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.activity-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.8s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.activity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.activity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.activity-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Partners Section */
.partners-section {
    background: var(--white);
    overflow: hidden;
}

.partners-slider {
    margin-top: 3rem;
    overflow: hidden;
    padding: 1rem 0;
}

.partners-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-card {
    background: var(--white);
    padding: 2rem 2.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 120px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.partner-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.partner-logo-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Legal Section */
.legal-section {
    background: var(--white);
}

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

.legal-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.legal-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    height: 100%;
}

.legal-card:hover {
    transform: translateX(5px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.legal-card i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.pdf-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.pdf-badge i {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.contact-simple {
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-text strong {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-text span {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-column h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-column p {
    color: var(--white);
    opacity: 0.8;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-list a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-list li i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-legal {
    margin: 1.5rem 0;
}

.footer-legal a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    display: inline-block;
}

.footer-legal a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    opacity: 0.6;
    font-size: 0.9rem;
}

.copyright p {
    margin: 0;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .logo {
        margin-right: auto;
    }

    .logo-img {
        height: 50px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        margin: 0;
        gap: 0;
        z-index: 999;
    }

    .nav-menu li {
        margin: 0;
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a {
        display: block;
        padding: 0.5rem 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        order: 1;
        margin-left: 1rem;
    }

    .language-switcher {
        order: 0;
        padding-left: 0;
        margin-left: 0;
        margin-right: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
    }

    .about-visual i {
        font-size: 5rem;
    }

    .contact-simple {
        padding: 0 1rem;
    }

    .contact-item {
        padding: 1.5rem 0;
        gap: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    .mvv-section {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .approach-content {
        grid-template-columns: 1fr;
    }

    .approach-image {
        order: -1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-image {
        order: -1;
        min-height: 400px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-overlay {
        padding: 2rem 1rem;
    }

    .overlay-number {
        font-size: 1.8rem;
    }

    .overlay-label {
        font-size: 0.8rem;
    }

    .key-numbers {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .content-header h2 {
        font-size: 2rem;
    }

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

    .contact-info-side {
        padding: 0 1rem;
        order: 1;
    }

    .info-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map-side {
        order: 2;
    }

    .contact-info-side h3 {
        font-size: 1.6rem;
    }

    .info-item {
        gap: 1rem;
    }

    .info-item i {
        font-size: 1.5rem;
    }

    .info-item h4 {
        font-size: 1rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.8rem 1rem;
    }

    .logo-img {
        height: 40px;
    }

    .language-switcher {
        margin-right: 0.5rem;
    }

    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .contact-map-side {
        padding: 1rem;
    }

    .contact-info-side {
        padding: 0 0.5rem;
    }

    .contact-info-side h3 {
        font-size: 1.4rem;
    }

    .info-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-item {
        gap: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .info-item i {
        font-size: 1.3rem;
    }

    .info-item h4 {
        font-size: 0.95rem;
    }

    .info-item p {
        font-size: 0.85rem;
    }

    .map-container {
        height: 250px;
    }

    .contact-layout-grid {
        gap: 2rem;
    }

    .contact-info-side h3,
    .contact-map-side h3 {
        font-size: 1.5rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content h3 {
        font-size: 1.5rem;
    }

    .about-visual i {
        font-size: 4rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 0;
        gap: 0.8rem;
    }

    .contact-item i {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .page-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .about-intro-box h2 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-box {
        padding: 2rem 1.5rem;
    }

    .approach-points {
        margin-top: 2rem;
    }

    .point-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .story-header h2 {
        font-size: 2rem;
    }

    .story-item {
        flex-direction: column;
        padding: 1.5rem;
    }

    .story-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.2rem;
    }

    .story-item h4 {
        font-size: 1.1rem;
    }

    .story-image {
        min-height: 300px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .section-header-center h2 {
        font-size: 2rem;
    }

    .section-header-center p {
        font-size: 1rem;
    }

    .image-overlay {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .overlay-number {
        font-size: 1.5rem;
    }

    .key-numbers {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0;
    }

    .number {
        font-size: 1.5rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .content-header h2 {
        font-size: 1.8rem;
    }

    .values-simple {
        padding: 2rem 1.5rem;
    }

    .values-simple h3 {
        font-size: 1.5rem;
    }

    .values-list-simple li {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

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

    .contact-map-side {
        padding: 2rem 1.5rem;
    }

    .info-item {
        gap: 1rem;
    }

    .info-item i {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .contact-info-simple,
    .contact-form-simple {
        padding: 2rem 1.5rem;
    }

    .contact-info-simple h3,
    .contact-form-simple h3 {
        font-size: 1.5rem;
    }

    .info-row {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .info-label {
        min-width: auto;
    }

    .contact-form-simple {
        padding: 2rem 1.5rem;
    }

    .contact-form-simple h3 {
        font-size: 1.5rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Page Hero Banner */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?w=1600&q=80') center/cover;
    opacity: 0.1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* About Detail Page */
.about-page {
    background: var(--white);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-large {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Simple Content */
.simple-content {
    margin-bottom: 4rem;
}

.content-header {
    text-align: center;
    margin-bottom: 3rem;
}

.year-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.content-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
}

.text-content {
    margin-bottom: 3rem;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.text-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Key Numbers */
.key-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    border-top: 2px solid var(--bg-light);
    border-bottom: 2px solid var(--bg-light);
    margin-bottom: 4rem;
}

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

.number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Values Simple */
.values-simple {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
}

.values-simple h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.values-list-simple {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.values-list-simple li {
    padding: 1rem 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 2rem;
}

.values-list-simple li:last-child {
    border-bottom: none;
}

.values-list-simple li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Contact Page */
.contact-page {
    background: var(--white);
    padding: 4rem 0;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: flex-start;
}

/* Left Side - Contact Info */
.contact-info-side {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.contact-info-side h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.info-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
    min-width: 30px;
}

.info-item div {
    flex: 1;
    min-width: 0;
}

.info-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    word-break: break-word;
}

/* Right Side - Map */
.contact-map-side {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-map-side h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Adjustments for Map */
@media (max-width: 968px) {
    .contact-map-side {
        padding: 1.5rem;
    }

    .contact-map-side h3 {
        font-size: 1.6rem;
    }

    .map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-map-side {
        padding: 1rem;
    }

    .contact-map-side h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .map-container {
        height: 250px;
    }
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

/* KVKK Page Styles */
.kvkk-hero {
    height: 40vh;
    min-height: 280px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(5, 150, 105, 0.8)),
                url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.kvkk-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.kvkk-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.kvkk-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.kvkk-hero p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.95;
    line-height: 1.6;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.kvkk-content {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.document-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.3rem;
    transition: all 0.2s ease;
}

.document-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.document-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.document-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.document-header h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.document-body p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.download-button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.info-section {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.info-section h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-section p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.contact-info-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border: 1px solid #e2e8f0;
}

.contact-info-box h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-info-box p {
    color: var(--text-light);
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.contact-info-box a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .kvkk-hero {
        height: 35vh;
        min-height: 250px;
    }

    .kvkk-hero h1 {
        font-size: 1.8rem;
    }

    .kvkk-hero p {
        font-size: 0.95rem;
    }

    .kvkk-content {
        padding: 3rem 1.5rem;
    }

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