﻿* {
    margin: 0;
    /* padding: 0; */
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.top-bar {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #333;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .top-bar-item:hover {
        color: #ffffff;
    }

    .top-bar-item i {
        font-size: 12px;
        color: #48a617;
    }

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    color: #cccccc;
    font-size: 14px;
    transition: color 0.3s ease;
    text-decoration: none;
}

    .social-icon:hover {
        color: #007bff;
    }

    .social-icon.facebook:hover {
        color: #3b5998;
    }

    .social-icon.twitter:hover {
        color: #1da1f2;
    }

    .social-icon.linkedin:hover {
        color: #0077b5;
    }

    .social-icon.instagram:hover {
        color: #e1306c;
    }

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-top: 3px solid #007bff;
    z-index: 999;
}

.dropdown-item:hover + * ~ .mega-dropdown,
.dropdown-item:hover ~ .mega-dropdown,
.main-header:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Alternatif - JavaScript olmadan çalışır */
.main-header:hover .dropdown-item:hover ~ .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Mobil responsive */
@media (max-width: 930px) {
    .top-bar {
        font-size: 12px;
        padding: 6px 0;
    }

    .top-bar-container {
        padding: 0 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .top-bar-left {
        gap: 15px;
        flex-wrap: wrap;
    }

    .top-bar-item {
        font-size: 11px;
    }

    .social-icon {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .top-bar-left {
        gap: 10px;
    }

    .top-bar-item span {
        display: none;
    }

    .top-bar-item i {
        font-size: 14px;
    }
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    font-family: system-ui;
    position: relative;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: #48a517;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #49a719;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

.mobile-menu-btn {
    display: none;
    font-size: 18px;
    color: #333;
    cursor: pointer;
}

/* Mobil responsive */
@media (max-width: 930px) {
    .header-container {
        padding: 12px 15px;
    }

    .logo-text {
        font-size: 20px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

.dropdown-item {
    position: relative;
}

    .dropdown-item .nav-link i {
        margin-left: 5px;
        font-size: 10px;
        transition: transform 0.3s ease;
    }

    .dropdown-item:hover .nav-link i {
        transform: rotate(180deg);
    }

.mega-dropdown {
    position: absolute;
    top: 100%;
    /* left: -400px; */
    /* width: 1200px; */
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    /* opacity: 1; */
    /* visibility: visible; */
    /* transform: translateY(-10px); */
    transition: all 0.3s ease;
    border-top: 3px solid #47a518;
    z-index: 999;
}

.dropdown-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 30px;
    gap: 30px;
}

.dropdown-column h4 {
    color: #1a1a1a;
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #48a617;
}

.dropdown-column ul {
    list-style: none;
}

    .dropdown-column ul li {
        margin-bottom: 8px;
    }

        .dropdown-column ul li a {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            display: block;
            padding: 5px 0;
        }

            .dropdown-column ul li a:hover {
                color: #48a617;
                padding-left: 5px;
            }

.dropdown-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

    .dropdown-info h4 {
        color: #1a1a1a;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .dropdown-info p {
        color: #666;
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

.cta-btn {
    background: #48a617;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.3s ease;
    display: inline-block;
}

    .cta-btn:hover {
        background: #1a1a1a;
    }

/* Mobilde dropdown gizle */
@media (max-width: 930px) {
    .mega-dropdown {
        display: none;
    }
}

.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    /* background-position: center; */
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slide.active {
        opacity: 1;
    }

    .slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: slideIn 1s ease-out;
}

    .slide-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }

        .slide-content h1 span {
            color: #9cff68;
        }

    .slide-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        line-height: 1.6;
        opacity: 0.9;
    }

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #48a517;
    color: white;
    border: 2px solid #48a617;
}

    .btn-primary:hover {
        background: transparent;
        color: #48a517;
        box-shadow: 0 5px 15px rgb(72 165 23 / 24%);
    }

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

    .btn-secondary:hover {
        background: white;
        color: #333;
    }

/* Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    /* backdrop-filter: blur(10px); */
    display: none;
}

    .nav-btn:hover {
        background: rgb(72 166 23 / 64%);
        transform: scale(1.1);
    }

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
    display: none;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        background: #48a517;
        transform: scale(1.2);
    }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 930px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }
}

.work-process {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 15px;
    }

        .section-header h2 span {
            color: #72b94d;
        }

    .section-header p {
        font-size: 1.1rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #48a517, #48a5179e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 25px rgb(125 190 92);
    transition: all 0.3s ease;
}

    .step-icon:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgb(72 165 23 / 84%);
    }

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #007bff;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.process-connector {
    position: absolute;
    top: 40px;
    height: 2px;
    background: linear-gradient(90deg, #5fb034, #7fbf5d);
    width: calc(80% - 60px);
    right: -calc(20% - 10px);
    z-index: 1;
    left: -50px;
}

    .process-connector::after {
        content: '';
        position: absolute;
        right: -6px;
        top: -2px;
        width: 0;
        height: 0;
        border-left: 6px solid #48a517;
        border-top: 3px solid transparent;
        border-bottom: 3px solid transparent;
    }

.process-step:first-child .process-connector {
    display: none;
}

/* Responsive */
@media (max-width: 930px) {
    .work-process {
        padding: 60px 0;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .process-connector {
        display: none;
    }

    .process-step {
        max-width: 300px;
    }

    .step-number {
        top: -5px;
        right: 50%;
        transform: translateX(50%);
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }
}

.services-section {
    padding: 100px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #83c162, #add797);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgb(136 196 105 / 51%);
    }

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #72b94d, #72b94d7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgb(137 196 106 / 52%);
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

    .card-content ul li {
        color: #555;
        font-size: 0.9rem;
        padding: 5px 0;
        position: relative;
        padding-left: 20px;
    }

        .card-content ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #85c264;
            font-weight: 600;
        }

.card-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.service-link {
    color: #88c469;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .service-link:hover {
        color: #6b895b;
        gap: 12px;
    }

    .service-link i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .service-link:hover i {
        transform: translateX(3px);
    }

/* Responsive */
@media (max-width: 930px) {
    .services-section {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 30px 25px 25px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 25px 20px 20px;
    }
}

.digital-transformation {
    padding: 120px 0;
    background: linear-gradient(135deg, #153305 0%, #4ba71b 100%);
    position: relative;
    overflow: hidden;
}

    .digital-transformation::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 40%;
        height: 200%;
        background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
        transform: rotate(45deg);
    }

    .digital-transformation .section-header h2 {
        color: white;
    }

    .digital-transformation .section-header p {
        color: rgba(255,255,255,0.8);
    }

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.transform-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

    .transform-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    }

    .transform-card.purple {
        border-top: 5px solid #9b59b6;
    }

    .transform-card.orange {
        border-top: 5px solid #f39c12;
    }

    .transform-card.cyan {
        border-top: 5px solid #1abc9c;
    }

.card-bg-pattern {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    opacity: 0.07;
    background-image: radial-gradient(circle at 20% 80%, currentColor 2px, transparent 2px), radial-gradient(circle at 80% 20%, currentColor 2px, transparent 2px);
    background-size: 30px 30px;
    animation: float 6s ease-in-out infinite;
}

.purple .card-bg-pattern {
    color: #9b59b6;
}

.orange .card-bg-pattern {
    color: #f39c12;
}

.cyan .card-bg-pattern {
    color: #1abc9c;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.transform-card .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.purple .card-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.orange .card-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.cyan .card-icon {
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.card-content p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.feature-tag {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.purple .feature-tag {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
    border-color: rgba(155, 89, 182, 0.2);
}

.orange .feature-tag {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
    border-color: rgba(243, 156, 18, 0.2);
}

.cyan .feature-tag {
    background: rgba(26, 188, 156, 0.1);
    color: #1abc9c;
    border-color: rgba(26, 188, 156, 0.2);
}

.stats {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.purple .stat-number {
    color: #9b59b6;
}

.orange .stat-number {
    color: #f39c12;
}

.cyan .stat-number {
    color: #1abc9c;
}

.stat-label {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.transformation-cta {
    text-align: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

    .transformation-cta h3 {
        font-size: 2rem;
        color: white;
        margin-bottom: 15px;
    }

    .transformation-cta p {
        color: rgba(255,255,255,0.8);
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-gradient {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 17px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

    .btn-gradient:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
    }

.btn-outline {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
}

    .btn-outline:hover {
        background: white;
        color: #47a019;
        transform: translateY(-3px);
    }

/* Responsive */
@media (max-width: 930px) {
    .digital-transformation {
        padding: 80px 0;
    }

    .transformation-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .transform-card {
        padding: 30px 25px;
    }

    .transformation-cta {
        padding: 40px 25px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-gradient, .btn-outline {
        display: inline-block;
        width: 200px;
    }
}

.products-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0 60px;
}

.filter-btn {
    background: white;
    color: #666;
    border: 2px solid #e9ecef;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

    .filter-btn:hover,
    .filter-btn.active {
        background: #48a617;
        color: white;
        border-color: #49a518;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgb(72 166 23);
    }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

    .product-card.hidden {
        opacity: 0;
        transform: scale(0.8);
        pointer-events: none;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.product-category {
    background: rgb(72 166 23);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.product-content {
    padding: 25px;
}

    .product-content h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 12px;
    }

    .product-content p {
        color: #5a6c7d;
        line-height: 1.6;
        margin-bottom: 20px;
        font-size: 0.95rem;
    }

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

    .product-features span {
        background: #48a6171c;
        color: #48a617;
        padding: 4px 10px;
        border-radius: 12px;
        font-size: 0.75rem;
        font-weight: 500;
    }

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #27ae60;
}

.product-link {
    background: #48a617;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .product-link:hover {
        background: #48a617b8;
        transform: translateX(3px);
    }

.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

    .no-products i {
        font-size: 3rem;
        color: #ddd;
        margin-bottom: 20px;
    }

    .no-products h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #5a6c7d;
    }

/* Animasyon efektleri */
.product-card {
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Responsive */
@media (max-width: 930px) {
    .products-section {
        padding: 80px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .category-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .product-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 20px;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

.sectors-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c9ddbe 100%);
    overflow: hidden;
    position: relative;
}

.sectors-animation {
    margin: 60px 0;
    position: relative;
}

.sectors-row {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    white-space: nowrap;
}

.top-row {
    animation: slideRight 45s infinite;
}

.bottom-row {
    animation: slideLeft 40s infinite;
}

.middle-row {
    animation: slideRight 50s infinite;
}

@keyframes slideRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.sector-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: fit-content;
    flex-shrink: 0;
}

    .sector-badge:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        background: linear-gradient(135deg, #4aa619, #204f07);
        color: white;
    }

    .sector-badge i {
        font-size: 18px;
        color: #72b94d;
        transition: color 0.3s ease;
    }

    .sector-badge:hover i {
        color: white;
    }

    .sector-badge span {
        font-weight: 600;
        font-size: 0.95rem;
        color: #2c3e50;
        transition: color 0.3s ease;
    }

    .sector-badge:hover span {
        color: white;
    }

/* Her satır için farklı renkler */
.top-row .sector-badge:nth-child(odd) {
    border-left: 4px solid #e74c3c;
}

.top-row .sector-badge:nth-child(even) {
    border-left: 4px solid #3498db;
}

.bottom-row .sector-badge:nth-child(odd) {
    border-left: 4px solid #2ecc71;
}

.bottom-row .sector-badge:nth-child(even) {
    border-left: 4px solid #f39c12;
}

.middle-row .sector-badge:nth-child(odd) {
    border-left: 4px solid #9b59b6;
}

.middle-row .sector-badge:nth-child(even) {
    border-left: 4px solid #1abc9c;
}

.sectors-cta {
    text-align: center;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.5);
}

    .sectors-cta h3 {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 15px;
    }

    .sectors-cta p {
        font-size: 1.1rem;
        color: #5a6c7d;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.btn-sectors {
    background: linear-gradient(135deg, #48a617, #152f07);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgb(73 166 24 / 38%);
    display: inline-block;
}

    .btn-sectors:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgb(72 166 23);
        background: linear-gradient(135deg, #2e6512, #48a617);
    }

/* Pause on hover */
.sectors-row:hover {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 930px) {
    .sectors-section {
        padding: 80px 0;
    }

    .sector-badge {
        padding: 12px 20px;
        gap: 8px;
    }

        .sector-badge i {
            font-size: 16px;
        }

        .sector-badge span {
            font-size: 0.85rem;
        }

    .sectors-cta {
        padding: 40px 25px;
    }

        .sectors-cta h3 {
            font-size: 1.6rem;
        }

    .btn-sectors {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sectors-row {
        gap: 15px;
        margin: 20px 0;
    }

    .sector-badge {
        padding: 10px 15px;
    }
}

.main-footer {
    margin-top: 0;
}

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #13230b 0%, #000000 100%);
    color: white;
}

    .contact-section .section-header h2 {
        color: white;
    }

    .contact-section .section-header p {
        color: rgba(255,255,255,0.8);
    }

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-form-container {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.2);
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-header p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 10px;
        padding: 15px;
        color: white;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.6);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3498db;
            background: rgba(255,255,255,0.15);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }

        .form-group select option {
            background: #2c3e50;
            color: white;
        }

    .form-group label {
        position: absolute;
        top: -8px;
        left: 15px;
        background: #449a1852;
        padding: 0 8px;
        font-size: 0.8rem;
        color: #e5e5e5;
        font-weight: 500;
        border-radius: 30px;
    }

.submit-btn {
    background: linear-gradient(135deg, #48a617, #ffffff52);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px auto 0;
}

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgb(72 166 23 / 65%);
    }

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #48a617, #49a51878);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        font-size: 18px;
        color: white;
    }

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.info-content p {
    color: rgb(255 255 255);
    line-height: 1.5;
    margin-bottom: 5px;
}

.info-content a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .info-content a:hover {
        color: white;
    }

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Footer Ana Kısım */
.footer-main {
    background: #1a1a1a;
    padding: 60px 0 40px;
    color: #cccccc;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-column h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

    .footer-column h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 30px;
        height: 2px;
        background: #49a618;
    }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

    .footer-logo .logo-img {
        height: 35px;
        width: auto;
    }

    .footer-logo .logo-text {
        font-size: 1.5rem;
        font-weight: bold;
        color: white;
    }

.footer-desc {
    line-height: 1.6;
    margin-bottom: 25px;
    color: #999;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background: #48a617;
        color: white;
        transform: translateY(-3px);
    }

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #999;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

        .footer-links a:hover {
            color: #48a617;
            padding-left: 5px;
        }

/* Footer Alt Kısım */
.footer-bottom {
    background: #111;
    padding: 25px 0;
    border-top: 1px solid #333;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

    .footer-bottom-links a {
        color: #666;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

        .footer-bottom-links a:hover {
            color: #48a617;
        }

/* Responsive */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 930px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Mobil Menü Stilleri */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
    backdrop-filter: blur(5px);
}

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: linear-gradient(135deg, #47a516 0%, #47a5166e 100%);
    box-shadow: -5px 0 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
}

    .mobile-menu.active {
        right: 0;
    }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgb(0 0 0 / 20%);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo-img {
    height: 30px;
    width: auto;
}

.mobile-logo-text {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .mobile-menu-close:hover {
        background: rgba(255,255,255,0.1);
    }

.mobile-menu-content {
    padding: 0 0 30px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

    .mobile-nav-link:hover {
        background: rgb(71 166 22);
        color: #ffffff;
        padding-left: 25px;
    }

    .mobile-nav-link i {
        font-size: 16px;
        width: 20px;
        color: #ffffff;
    }

.mobile-submenu {
    background: rgba(0,0,0,0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-item:hover .mobile-submenu {
    max-height: 5000px;
}

.mobile-submenu-link {
    display: block;
    padding: 12px 20px 12px 55px;
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

    .mobile-submenu-link:hover {
        background: rgba(52, 152, 219, 0.1);
        color: #ffffff;
        padding-left: 60px;
    }

.mobile-contact-info {
    padding: 25px 20px;
    background: rgba(0,0,0,0.1);
    margin: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

    .mobile-contact-info h4 {
        color: white;
        font-size: 1rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #bdc3c7;
    font-size: 0.9rem;
}

    .mobile-contact-item i {
        color: #ffffff;
        width: 16px;
        text-align: center;
    }

    .mobile-contact-item a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .mobile-contact-item a:hover {
            color: #ffffff;
        }

.mobile-cta-buttons {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-cta-primary,
.mobile-cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.mobile-cta-primary {
    background: linear-gradient(135deg, #234910, #295613);
    color: white;
}

    .mobile-cta-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgb(73 143 34);
    }

.mobile-cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

    .mobile-cta-secondary:hover {
        background: #28531257;
        color: white;
    }

.mobile-social-media {
    padding: 25px 20px 10px;
}

    .mobile-social-media h4 {
        color: white;
        font-size: 1rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

.mobile-social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.mobile-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

    .mobile-social-link.facebook {
        background: #3b5998;
        color: white;
    }

    .mobile-social-link.twitter {
        background: #1da1f2;
        color: white;
    }

    .mobile-social-link.linkedin {
        background: #0077b5;
        color: white;
    }

    .mobile-social-link.instagram {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        color: white;
    }

    .mobile-social-link.youtube {
        background: #ff0000;
        color: white;
    }

    .mobile-social-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

/* Mobil menü sadece küçük ekranlarda görünsün */
@media (min-width: 930px) {
    .mobile-menu,
    .mobile-menu-overlay {
        display: none;
    }
}

/* Scrollbar özelleştirme */
.mobile-menu::-webkit-scrollbar {
    width: 4px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: rgba(52, 152, 219, 0.5);
    border-radius: 2px;
}

.about-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.about-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

.about-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(124, 179, 66, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 8rem 2rem 4rem;
}

    .about-hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
    }

    .about-hero p {
        font-size: 1.3rem;
        max-width: 700px;
        opacity: 0.9;
    }

.about-story {
    padding: 6rem 2rem;
    background: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-story p {
    font-size: 1.1rem;
    /* color: #6c757d; */
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-year-box {
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

    .about-year-box span {
        font-size: 6rem;
        font-weight: 900;
        display: block;
        margin-bottom: 1rem;
    }

    .about-year-box p {
        font-size: 1.3rem;
        color: white;
    }

.about-mvv {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

    .about-mvv h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 3rem;
    }

.about-mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-mvv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #7CB342;
}

    .about-mvv-card:hover {
        transform: translateY(-10px);
    }

.about-mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.about-mvv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-mvv-card p {
    color: #6c757d;
    line-height: 1.7;
}

.about-timeline {
    padding: 6rem 2rem;
    background: white;
}

    .about-timeline h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 4rem;
    }

.about-timeline-list {
    max-width: 900px;
    margin: 0 auto;
}

.about-timeline-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.about-timeline-year {
    font-size: 2rem;
    font-weight: 800;
    color: #7CB342;
    text-align: right;
}

.about-timeline-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #7CB342;
}

    .about-timeline-content h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .about-timeline-content p {
        color: #6c757d;
    }

.about-values {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
}

    .about-values h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 3rem;
    }

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .about-value-card:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: #7CB342;
    }

    .about-value-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #7CB342;
    }

    .about-value-card p {
        color: #e9ecef;
        line-height: 1.7;
    }

.about-stats {
    padding: 4rem 2rem;
    background: #7CB342;
    color: white;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-stat h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.about-stat p {
    font-size: 1.1rem;
}

.about-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: white;
}

    .about-cta h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .about-cta p {
        font-size: 1.2rem;
        color: #6c757d;
        margin-bottom: 2rem;
    }

.about-btn {
    display: inline-flex;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

    .about-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(124, 179, 66, 0.4);
    }

@media (max-width: 930px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-story-grid,
    .about-mvv-grid,
    .about-values-grid,
    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-timeline-year {
        text-align: left;
    }
}

.about-visual-box {
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

    .about-visual-box::before {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: -50px;
        right: -50px;
    }

.mission-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mission-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

.mission-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.95) 0%, rgba(93, 156, 43, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

    .mission-hero::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: -100px;
        left: -100px;
    }

    .mission-hero::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        bottom: -150px;
        right: -150px;
    }

.mission-hero-content {
    position: relative;
    z-index: 2;
}

.mission-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.mission-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    opacity: 0.95;
    margin: 0 auto;
}

.mission-main {
    padding: 6rem 2rem;
    background: white;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.mission-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #7CB342;
    transition: all 0.3s ease;
}

    .mission-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.mission-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.mission-card p {
    font-size: 1.15rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-principles {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
}

    .mission-principles h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 3rem;
    }

.mission-principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-principle-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

    .mission-principle-card:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: #7CB342;
        transform: translateY(-5px);
    }

.mission-principle-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mission-principle-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #7CB342;
}

.mission-principle-card p {
    color: #e9ecef;
    line-height: 1.7;
}

.mission-approach {
    padding: 6rem 2rem;
    background: white;
}

    .mission-approach h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1a1a1a;
    }

.mission-approach-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 4rem;
}

.mission-approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.mission-approach-item {
    display: flex;
    gap: 2rem;
    align-items: start;
}

.mission-approach-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.mission-approach-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.mission-approach-content p {
    color: #6c757d;
    line-height: 1.7;
}

.mission-commitment {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

    .mission-commitment h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 3rem;
        color: #1a1a1a;
    }

.mission-commitment-list {
    max-width: 900px;
    margin: 0 auto;
}

.mission-commitment-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

    .mission-commitment-item:hover {
        transform: translateX(10px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

.mission-commitment-check {
    width: 40px;
    height: 40px;
    background: #7CB342;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.mission-commitment-item p {
    font-size: 1.1rem;
    color: #495057;
    margin: 0;
}

.mission-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    color: white;
}

    .mission-cta h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .mission-cta p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.95;
    }

.mission-btn {
    display: inline-flex;
    padding: 1rem 2.5rem;
    background: white;
    color: #7CB342;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

    .mission-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

@media (max-width: 930px) {
    .mission-hero h1 {
        font-size: 2.5rem;
    }

    .mission-grid,
    .mission-principles-grid,
    .mission-approach-grid {
        grid-template-columns: 1fr;
    }

    .mission-approach-item {
        flex-direction: column;
        text-align: center;
    }
}

.ethics-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ethics-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

.ethics-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(93, 156, 43, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

    .ethics-hero::before {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        border: 3px solid rgba(124, 179, 66, 0.3);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: ethics-pulse 3s ease-in-out infinite;
    }

@keyframes ethics-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
}

.ethics-hero-content {
    position: relative;
    z-index: 2;
}

.ethics-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.ethics-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    opacity: 0.95;
    margin: 0 auto;
}

.ethics-intro {
    padding: 6rem 2rem;
    background: white;
    text-align: center;
}

.ethics-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ethics-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.ethics-intro p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.ethics-pillars {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

    .ethics-pillars h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1a1a1a;
    }

.ethics-pillars-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 4rem;
}

.ethics-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ethics-pillar-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .ethics-pillar-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    }

    .ethics-pillar-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.ethics-pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.ethics-pillar-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.ethics-pillar-card p {
    color: #6c757d;
    line-height: 1.7;
}

.ethics-rules {
    padding: 6rem 2rem;
    background: white;
}

    .ethics-rules h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 4rem;
        color: #1a1a1a;
    }

.ethics-rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.ethics-rule-item {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #7CB342;
    transition: all 0.3s ease;
}

    .ethics-rule-item:hover {
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateX(5px);
    }

.ethics-rule-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #7CB342;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ethics-rule-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.ethics-rule-item p {
    color: #6c757d;
    line-height: 1.7;
}

.ethics-commitment {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
}

    .ethics-commitment h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 3rem;
    }

.ethics-commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.ethics-commitment-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .ethics-commitment-card:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: #7CB342;
        transform: translateY(-5px);
    }

.ethics-commitment-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ethics-commitment-icon {
    font-size: 2rem;
}

.ethics-commitment-card h3 {
    font-size: 1.4rem;
    color: #7CB342;
}

.ethics-commitment-card p {
    color: #e9ecef;
    line-height: 1.7;
}

.ethics-values {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

    .ethics-values h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1a1a1a;
    }

.ethics-values-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 4rem;
}

.ethics-values-list {
    max-width: 900px;
    margin: 0 auto;
}

.ethics-value-item {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

    .ethics-value-item:hover {
        transform: translateX(10px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

.ethics-value-check {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.ethics-value-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.ethics-value-content p {
    color: #6c757d;
    margin: 0;
}

.ethics-transparency {
    padding: 6rem 2rem;
    background: white;
    text-align: center;
}

    .ethics-transparency h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #1a1a1a;
    }

    .ethics-transparency p {
        font-size: 1.15rem;
        color: #6c757d;
        max-width: 800px;
        margin: 0 auto 3rem;
        line-height: 1.8;
    }

.ethics-transparency-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid #7CB342;
}

    .ethics-transparency-box p {
        font-size: 1.2rem;
        color: #495057;
        font-weight: 500;
        margin: 0;
    }

.ethics-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    color: white;
}

    .ethics-cta h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .ethics-cta p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.95;
    }

.ethics-btn {
    display: inline-flex;
    padding: 1rem 2.5rem;
    background: white;
    color: #7CB342;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

    .ethics-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

@media (max-width: 930px) {
    .ethics-hero h1 {
        font-size: 2.5rem;
    }

    .ethics-pillars-grid {
        grid-template-columns: 1fr;
    }

    .ethics-rules-grid,
    .ethics-commitment-grid {
        grid-template-columns: 1fr;
    }

    .ethics-value-item {
        flex-direction: column;
        text-align: center;
    }
}

.values-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.values-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

.values-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.95) 0%, rgba(93, 156, 43, 0.85) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="100" fill="white" opacity="0.1"/><circle cx="800" cy="800" r="150" fill="white" opacity="0.08"/><path d="M100 500 Q300 300 500 500 T900 500" stroke="white" stroke-width="2" fill="none" opacity="0.2"/></svg>');
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

    .values-hero::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .values-hero::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        border: 2px solid rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.values-hero-content {
    position: relative;
    z-index: 2;
}

.values-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.values-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    opacity: 0.95;
    margin: 0 auto;
}

.values-intro {
    padding: 6rem 2rem;
    background: white;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.values-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.values-intro p {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-core {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

    .values-core h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1a1a1a;
    }

.values-core-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 4rem;
}

.values-core-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.values-core-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .values-core-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .values-core-card:hover::before {
        transform: scaleX(1);
    }

    .values-core-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

.values-core-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.values-core-card:hover .values-core-icon {
    transform: scale(1.1) rotate(5deg);
}

.values-core-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.values-core-card p {
    color: #6c757d;
    line-height: 1.8;
    text-align: center;
    font-size: 1.05rem;
}

.values-detail {
    padding: 6rem 2rem;
    background: white;
}

    .values-detail h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 4rem;
        color: #1a1a1a;
    }

.values-detail-list {
    max-width: 1000px;
    margin: 0 auto;
}

.values-detail-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

    .values-detail-item:nth-child(even) {
        grid-template-columns: 1fr 120px;
    }

        .values-detail-item:nth-child(even) .values-detail-content {
            grid-column: 1;
            text-align: right;
        }

        .values-detail-item:nth-child(even) .values-detail-icon-wrapper {
            grid-column: 2;
        }

.values-detail-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.values-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(124, 179, 66, 0.3);
}

.values-detail-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #7CB342;
}

.values-detail-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.values-detail-content p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-detail-content ul {
    list-style: none;
    margin-top: 1rem;
}

.values-detail-content li {
    padding: 0.5rem 0;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
}

    .values-detail-content li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: #7CB342;
        font-weight: bold;
    }

.values-detail-item:nth-child(even) .values-detail-content li {
    padding-left: 0;
    padding-right: 1.5rem;
}

    .values-detail-item:nth-child(even) .values-detail-content li::before {
        left: auto;
        right: 0;
        content: '←';
    }

.values-culture {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
}

    .values-culture h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

.values-culture-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 4rem;
}

.values-culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.values-culture-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .values-culture-card:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: #7CB342;
        transform: translateY(-5px);
    }

.values-culture-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.values-culture-icon {
    font-size: 2.5rem;
}

.values-culture-card h3 {
    font-size: 1.5rem;
    color: #7CB342;
}

.values-culture-card p {
    color: #e9ecef;
    line-height: 1.8;
    font-size: 1.05rem;
}

.values-action {
    padding: 6rem 2rem;
    background: white;
}

    .values-action h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1a1a1a;
    }

.values-action-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 4rem;
}

.values-action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.values-action-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .values-action-card:hover {
        border-color: #7CB342;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

.values-action-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.values-action-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.values-action-card p {
    color: #6c757d;
    line-height: 1.7;
}

.values-quote {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    color: white;
    text-align: center;
}

.values-quote-content {
    max-width: 900px;
    margin: 0 auto;
}

.values-quote-mark {
    font-size: 5rem;
    opacity: 0.3;
    line-height: 1;
}

.values-quote-text {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 2rem 0;
    font-style: italic;
}

.values-quote-author {
    font-size: 1.2rem;
    opacity: 0.9;
}

.values-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: white;
}

    .values-cta h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1a1a1a;
    }

    .values-cta p {
        font-size: 1.2rem;
        color: #6c757d;
        margin-bottom: 2rem;
    }

.values-btn {
    display: inline-flex;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

    .values-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(124, 179, 66, 0.4);
    }

@media (max-width: 930px) {
    .values-hero h1 {
        font-size: 2.5rem;
    }

    .values-core-grid,
    .values-culture-grid,
    .values-action-grid {
        grid-template-columns: 1fr;
    }

    .values-detail-item,
    .values-detail-item:nth-child(even) {
        grid-template-columns: 1fr;
        text-align: center !important;
    }

        .values-detail-item:nth-child(even) .values-detail-content {
            grid-column: 1;
            text-align: center !important;
        }

        .values-detail-item:nth-child(even) .values-detail-icon-wrapper {
            grid-column: 1;
        }

        .values-detail-content li,
        .values-detail-item:nth-child(even) .values-detail-content li {
            text-align: left;
            padding-left: 1.5rem !important;
            padding-right: 0 !important;
        }

            .values-detail-content li::before,
            .values-detail-item:nth-child(even) .values-detail-content li::before {
                content: '→' !important;
                left: 0 !important;
                right: auto !important;
            }
}

.bth-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bth-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

.bth-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(124, 179, 66, 0.3) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="bth-grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="white" stroke-opacity="0.1" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23bth-grid)"/><circle cx="200" cy="300" r="100" fill="white" opacity="0.05"/><circle cx="800" cy="700" r="150" fill="%237CB342" opacity="0.1"/></svg>');
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

    .bth-hero::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(124, 179, 66, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: bth-glow 4s ease-in-out infinite;
    }

@keyframes bth-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.bth-hero-content {
    position: relative;
    z-index: 2;
}

.bth-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.bth-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    opacity: 0.95;
    margin: 0 auto;
}

.bth-intro {
    padding: 6rem 2rem;
    background: white;
}

.bth-container {
    max-width: 1200px;
    margin: 0 auto;
}

.bth-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bth-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.bth-intro-content p {
    font-size: 1.15rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.bth-intro-visual {
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

    .bth-intro-visual::before {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: -50px;
        right: -50px;
    }

.bth-intro-visual-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.bth-intro-visual h3 {
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.bth-services {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

    .bth-services h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1a1a1a;
    }

.bth-services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 4rem;
}

.bth-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bth-service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #7CB342;
}

    .bth-service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

.bth-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
}

.bth-service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.bth-service-card p {
    color: #6c757d;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1.5rem;
}

.bth-service-features {
    list-style: none;
    margin-top: 1.5rem;
}

    .bth-service-features li {
        padding: 0.6rem 0;
        color: #495057;
        position: relative;
        padding-left: 1.5rem;
        font-size: 0.95rem;
    }

        .bth-service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #7CB342;
            font-weight: bold;
        }

.bth-legal {
    padding: 6rem 2rem;
    background: white;
}

    .bth-legal h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 4rem;
        color: #1a1a1a;
    }

.bth-legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.bth-legal-card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    border-left: 5px solid #7CB342;
    transition: all 0.3s ease;
}

    .bth-legal-card:hover {
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateX(5px);
    }

    .bth-legal-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1a1a1a;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

.bth-legal-icon {
    font-size: 2rem;
}

.bth-legal-card p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.bth-legal-card ul {
    list-style: none;
    margin-top: 1rem;
}

.bth-legal-card li {
    padding: 0.5rem 0;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
}

    .bth-legal-card li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: #7CB342;
        font-weight: bold;
    }

.bth-compliance {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
}

    .bth-compliance h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

.bth-compliance-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 4rem;
}

.bth-compliance-list {
    max-width: 900px;
    margin: 0 auto;
}

.bth-compliance-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .bth-compliance-item:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: #7CB342;
        transform: translateY(-5px);
    }

.bth-compliance-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.bth-compliance-number {
    width: 50px;
    height: 50px;
    background: #7CB342;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.bth-compliance-item h3 {
    font-size: 1.5rem;
    color: #7CB342;
}

.bth-compliance-item p {
    color: #e9ecef;
    line-height: 1.8;
    padding-left: 4rem;
}

.bth-standards {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

    .bth-standards h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1a1a1a;
    }

.bth-standards-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 4rem;
}

.bth-standards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bth-standard-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .bth-standard-card:hover {
        border-color: #7CB342;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

.bth-standard-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bth-standard-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.bth-standard-card p {
    color: #6c757d;
    font-size: 0.95rem;
}

.bth-commitment {
    padding: 6rem 2rem;
    background: white;
}

    .bth-commitment h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 4rem;
        color: #1a1a1a;
    }

.bth-commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bth-commitment-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .bth-commitment-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

.bth-commitment-emoji {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.bth-commitment-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.bth-commitment-card p {
    color: #6c757d;
    line-height: 1.7;
}

.bth-info {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    color: white;
    text-align: center;
}

    .bth-info h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 2rem;
    }

.bth-info-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bth-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

    .bth-info-item:last-child {
        border-bottom: none;
    }

.bth-info-label {
    font-size: 1.2rem;
    font-weight: 600;
}

.bth-info-value {
    font-size: 1.1rem;
    opacity: 0.95;
}

.bth-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: white;
}

    .bth-cta h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1a1a1a;
    }

    .bth-cta p {
        font-size: 1.2rem;
        color: #6c757d;
        margin-bottom: 2rem;
    }

.bth-btn {
    display: inline-flex;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

    .bth-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(124, 179, 66, 0.4);
    }

@media (max-width: 930px) {
    .bth-hero h1 {
        font-size: 2.5rem;
    }

    .bth-intro-grid {
        grid-template-columns: 1fr;
    }

    .bth-services-grid,
    .bth-commitment-grid {
        grid-template-columns: 1fr;
    }

    .bth-legal-grid {
        grid-template-columns: 1fr;
    }

    .bth-standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bth-info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

.legal-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.legal-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

.legal-hero {
    min-height: 40vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(124, 179, 66, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 8rem 2rem 4rem;
}

    .legal-hero h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .legal-hero p {
        font-size: 1.2rem;
        opacity: 0.9;
    }

.legal-nav {
    background: #ffffffad;
    padding: 2rem;
    position: sticky;
    top: 100px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.legal-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-nav-link {
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .legal-nav-link:hover,
    .legal-nav-link.active {
        background: #7CB342;
        color: white;
        border-color: #7CB342;
    }

.legal-section {
    padding: 4rem 2rem;
    background: white;
}

    .legal-section:nth-child(even) {
        background: #f8f9fa;
    }

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    padding-bottom: 1rem;
    border-bottom: 3px solid #7CB342;
}

.legal-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
}

.legal-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem;
    color: #495057;
}

.legal-section p {
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-section li {
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-highlight {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

    .legal-highlight p {
        margin: 0;
        color: #856404;
    }

.legal-info-box {
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

    .legal-info-box h4 {
        color: white;
        margin-top: 0;
    }

    .legal-info-box p {
        color: white;
        opacity: 0.95;
    }

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .legal-table th,
    .legal-table td {
        padding: 1rem;
        text-align: left;
        border-bottom: 1px solid #e9ecef;
    }

    .legal-table th {
        background: #7CB342;
        color: white;
        font-weight: 600;
    }

    .legal-table tr:hover {
        background: #f8f9fa;
    }

.legal-date {
    text-align: right;
    font-style: italic;
    color: #6c757d;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.legal-contact {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

    .legal-contact h4 {
        color: #1a1a1a;
        margin-top: 0;
    }

    .legal-contact p {
        margin: 0.5rem 0;
    }

.legal-back-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #7CB342;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
}

    .legal-back-top:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

@media (max-width: 930px) {
    .legal-hero h1 {
        font-size: 2rem;
    }

    .legal-nav-container {
        flex-direction: column;
        align-items: stretch;
    }

    .legal-nav-link {
        text-align: center;
    }

    .legal-section h2 {
        font-size: 2rem;
    }

    .legal-section h3 {
        font-size: 1.5rem;
    }

    .legal-table {
        font-size: 0.9rem;
    }

        .legal-table th,
        .legal-table td {
            padding: 0.5rem;
        }
}

.coming-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.coming-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(124, 179, 66, 0.2) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="coming-dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23coming-dots)"/><circle cx="200" cy="300" r="150" fill="white" opacity="0.05"/><circle cx="800" cy="700" r="200" fill="%237CB342" opacity="0.1"/></svg>');
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
}

    .coming-page::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(124, 179, 66, 0.3) 0%, transparent 70%);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: coming-pulse 4s ease-in-out infinite;
    }

@keyframes coming-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

.coming-container {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.coming-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 700;
    animation: coming-fade-in 1s ease;
}

.coming-logo-icon {
    width: 60px;
    height: 30px;
    background: white;
    border-radius: 30px;
    position: relative;
}

    .coming-logo-icon::after {
        content: '';
        width: 24px;
        height: 24px;
        background: #7CB342;
        border-radius: 50%;
        position: absolute;
        right: 3px;
        top: 3px;
        animation: coming-slide 2s ease-in-out infinite;
    }

@keyframes coming-slide {
    0%, 100% {
        right: 3px;
    }

    50% {
        right: 33px;
    }
}

.coming-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: coming-fade-in 1s ease 0.3s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.coming-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: coming-fade-in 1s ease 0.6s both;
    line-height: 1.6;
}

.coming-countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: coming-fade-in 1s ease 0.9s both;
}

.coming-countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .coming-countdown-item:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
    }

.coming-countdown-number {
    font-size: 3rem;
    font-weight: 800;
    color: #acff55;
    display: block;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.coming-countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.coming-notify {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
    animation: coming-fade-in 1s ease 1.2s both;
}

    .coming-notify h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #acff55;
    }

    .coming-notify p {
        margin-bottom: 1.5rem;
        opacity: 0.9;
        line-height: 1.6;
    }

.coming-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.coming-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

    .coming-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .coming-input:focus {
        border-color: #7CB342;
        background: rgba(255, 255, 255, 0.15);
    }

.coming-button {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #7CB342 0%, #5d9c2b 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

    .coming-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(124, 179, 66, 0.4);
    }

.coming-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: coming-fade-in 1s ease 1.5s both;
}

.coming-social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

    .coming-social-link:hover {
        background: #7CB342;
        border-color: #7CB342;
        transform: translateY(-3px);
    }

.coming-progress {
    margin-bottom: 3rem;
    animation: coming-fade-in 1s ease 1.8s both;
}

.coming-progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.coming-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.coming-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #acff55 0%, #5bbb0f 100%);
    border-radius: 10px;
    width: 75%;
    animation: coming-progress 2s ease;
}

@keyframes coming-progress {
    from {
        width: 0%;
    }

    to {
        width: 75%;
    }
}

.coming-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: coming-fade-in 1s ease 2.1s both;
}

.coming-feature {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

    .coming-feature:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-5px);
    }

.coming-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.coming-feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #acff55;
}

.coming-feature-text {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

.coming-footer {
    opacity: 0.7;
    font-size: 0.9rem;
    animation: coming-fade-in 1s ease 2.4s both;
}

    .coming-footer a {
        color: #acff55;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .coming-footer a:hover {
            color: white;
        }

@keyframes coming-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-success-message {
    display: none;
    background: rgba(124, 179, 66, 0.2);
    border: 2px solid #7CB342;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    animation: coming-fade-in 0.5s ease;
}

    .coming-success-message.show {
        display: block;
    }

@media (max-width: 930px) {
    .coming-title {
        font-size: 2.5rem;
    }

    .coming-subtitle {
        font-size: 1.2rem;
    }

    .coming-countdown {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .coming-countdown-item {
        min-width: 100px;
        padding: 1.5rem;
    }

    .coming-countdown-number {
        font-size: 2rem;
    }

    .coming-form {
        flex-direction: column;
    }

    .coming-features {
        grid-template-columns: 1fr;
    }

    .coming-notify {
        padding: 1.5rem;
    }
}

/* Particles animation */
.coming-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.coming-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(124, 179, 66, 0.5);
    border-radius: 50%;
    animation: coming-float 10s infinite;
}

@keyframes coming-float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}
