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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 17px;
    margin: 0;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

/* Banner/Navigation */
.banner {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8fdf9 0%, #ffffff 100%);
    padding: 0 40px;
    box-shadow: 0 2px 12px rgba(28, 153, 57, 0.1);
    border-bottom: 2px solid #1c9939;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.banner-brand {
    flex-shrink: 0;
}

.brand-link {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 28px;
    font-weight: bold;
    color: #1c9939;
    font-style: italic;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.brand-link:hover {
    color: #158030;
    transform: scale(1.05);
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

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

/* Logo Container - Improved */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.logo-icon:hover {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.logo-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    font-weight: bold;
    color: #158030;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.logo-map {
    width: 100%;
    height: 24px;
    position: relative;
    margin-top: 2px;
    perspective: 100px;
}

.logo-map::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #158030 0%, #1c9939 100%);
    clip-path: polygon(
        10% 0%, 30% 0%, 30% 20%, 50% 20%, 50% 0%, 70% 0%, 
        70% 30%, 90% 30%, 90% 50%, 70% 50%, 70% 80%, 
        50% 80%, 50% 60%, 30% 60%, 30% 80%, 10% 80%, 
        10% 50%, 0% 50%, 0% 30%, 10% 30%
    );
    opacity: 0.9;
    transform: perspective(100px) rotateX(5deg);
}

.logo-map::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
    clip-path: polygon(
        10% 0%, 30% 0%, 30% 20%, 50% 20%, 50% 0%, 70% 0%, 
        70% 30%, 90% 30%, 90% 50%, 70% 50%, 70% 40%, 
        50% 40%, 50% 30%, 30% 30%, 30% 40%, 10% 40%, 
        10% 30%, 0% 30%, 0% 0%, 10% 0%
    );
}

.map-pin {
    position: absolute;
    top: 35%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #158030;
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
}

.menu {
    font-size: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.menu a {
    color: #555;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    letter-spacing: 0.3px;
}

.menu a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #1c9939;
    transition: width 0.3s ease;
}

.menu a:hover {
    color: #1c9939;
    background-color: #f8fdf9;
}

.menu a:hover::before {
    width: 80%;
}

.menu a.active {
    color: #1c9939;
    background-color: #f8fdf9;
}

.menu a.active::before {
    width: 80%;
}

/* Content Area */
.content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

/* Home Hero Section */
.home-hero {
    background: #ffffff;
    padding: 60px 80px;
    border-radius: 8px;
    margin-bottom: 80px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.home-hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
    justify-content: center;
}

.home-hero-logo {
    flex-shrink: 0;
}

.hero-logo-image {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
    border: 1px solid #e0e0e0;
}

.home-hero-text {
    flex: 1;
    text-align: left;
    max-width: 550px;
}

.home-hero-description {
    font-size: 24px;
    color: #333333;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.2px;
}

.home-hero-stats-compact {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.home-stat-item-compact {
    text-align: center;
    padding: 15px 25px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    border-radius: 10px;
    border: 2px solid #1c9939;
    transition: all 0.3s;
    min-width: 120px;
}

.home-stat-item-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(28, 153, 57, 0.2);
}

.home-stat-number-compact {
    font-size: 42px;
    font-weight: 900;
    color: #1c9939;
    line-height: 1;
    margin-bottom: 5px;
}

.home-stat-label-compact {
    font-size: 14px;
    color: #158030;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Old stats kept for compatibility */
.home-hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 25px;
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    border-radius: 15px;
    border: 2px solid #1c9939;
}

.home-stat-item {
    text-align: center;
    flex: 1;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(28, 153, 57, 0.15);
    transition: all 0.3s;
}

.home-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(28, 153, 57, 0.25);
}

.home-stat-number {
    font-size: 64px;
    font-weight: 900;
    color: #1c9939;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(28, 153, 57, 0.2);
}

.home-stat-label {
    font-size: 20px;
    color: #158030;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* New Hero Section (Old - kept for compatibility) */
.new-hero {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    padding: 80px 40px;
    background: #ffffff;
    border-radius: 20px;
    margin-bottom: 80px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.hero-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-large {
    width: 200px;
    height: 200px;
}

.hero-logo-icon {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s;
    border: 2px solid #e8f5e9;
}

.hero-logo-icon:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.hero-logo-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 48px;
    font-weight: bold;
    color: #1c9939;
    font-style: italic;
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-logo-map {
    width: 100%;
    height: 80px;
    position: relative;
    margin-top: 10px;
}

.hero-logo-map::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1c9939 0%, #158030 100%);
    clip-path: polygon(
        15% 0%, 35% 0%, 35% 25%, 55% 25%, 55% 0%, 75% 0%,
        75% 35%, 100% 35%, 100% 65%, 75% 65%, 75% 100%,
        55% 100%, 55% 70%, 35% 70%, 35% 100%, 15% 100%,
        15% 65%, 0% 65%, 0% 35%, 15% 35%
    );
    opacity: 0.85;
}

.hero-map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    background: #1c9939;
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -65%) rotate(-45deg);
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}

.hero-content-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-main-title {
    font-size: 56px;
    font-weight: 800;
    color: #1c9939;
    margin: 0;
    line-height: 1.2;
}

.hero-description {
    font-size: 22px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.hero-stats-new {
    margin-top: 10px;
}

.stat-large {
    text-align: left;
}

.stat-number-large {
    font-size: 72px;
    font-weight: 900;
    color: #1c9939;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-text-large {
    font-size: 18px;
    color: #666;
    line-height: 1.5;
    margin-top: 10px;
}

.hero-cta {
    align-self: flex-start;
    margin-top: 10px;
}

/* Hero Section (Old - kept for compatibility) */
.hero {
    background: linear-gradient(135deg, #1c9939 0%, #158030 100%);
    padding: 100px 40px;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 80px;
    box-shadow: 0 10px 40px rgba(28, 153, 57, 0.2);
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.hero-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

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

.stat-item-large {
    text-align: center;
    width: 100%;
}

.stat-number {
    font-size: 64px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-label-large {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #888;
    margin-top: 10px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #fff;
    color: #1c9939;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background-color: #f0f0f0;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px) scale(1.05);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #e8f5e9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    box-shadow: 0 4px 15px rgba(28, 153, 57, 0.08);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #158030;
    box-shadow: 0 15px 40px rgba(21, 128, 48, 0.2);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s;
    border: 2px solid #e8f5e9;
}

.feature-icon {
    font-size: 40px;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #158030 0%, #1c9939 100%);
    border-color: #158030;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
    filter: brightness(0) invert(1);
}

.feature-link {
    margin-top: 20px;
    color: #158030;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.feature-card:hover .feature-link {
    opacity: 1;
    transform: translateX(0);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #158030;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Section Headings */
h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1c9939;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #158030;
    margin-top: 40px;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #158030;
    font-weight: 600;
}

/* Text Content */
.content p {
    margin-bottom: 15px;
    color: #555;
}

.content pre {
    white-space: pre-wrap;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: transparent;
    color: #555;
    padding: 0;
    margin: 0;
}

/* How It Works Section */
.how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.step-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid #e8f5e9;
    text-align: center;
    position: relative;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(28, 153, 57, 0.08);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: #158030;
    box-shadow: 0 12px 30px rgba(21, 128, 48, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #158030 0%, #1c9939 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(21, 128, 48, 0.3);
    transition: transform 0.3s;
    z-index: 2;
}

.step-icon {
    font-size: 48px;
    margin: 30px 0 20px;
    transition: transform 0.3s;
}

.step-card:hover .step-number {
    transform: translateX(-50%) scale(1.1) rotate(360deg);
}

.step-card:hover .step-icon {
    transform: scale(1.2) rotate(-10deg);
}

.step-card h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #158030;
    font-weight: 600;
}

.step-card p {
    color: #666;
    line-height: 1.8;
}

/* Benefits Section */
.benefits-section {
    margin: 80px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-content h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #1c9939;
    text-align: center;
    font-weight: 700;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    border: 2px solid #e8f5e9;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: #1c9939;
    box-shadow: 0 8px 25px rgba(28, 153, 57, 0.15);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1c9939 0%, #158030 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: #1c9939;
    font-size: 20px;
    margin-bottom: 8px;
}

.benefit-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.benefits-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    background: linear-gradient(135deg, #1c9939 0%, #158030 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 40px rgba(28, 153, 57, 0.3);
    transition: transform 0.3s;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.visual-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.visual-card h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
}

.visual-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

/* Testimonials Section */
/* Testimonials Carousel */
.testimonials-carousel-container {
    position: relative;
    margin: 60px 0;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-carousel {
    display: flex;
    gap: 30px;
    will-change: transform;
}

.testimonial-card-carousel {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e8f5e9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    height: 280px;
    display: flex;
    flex-direction: column;
}

.testimonial-card-carousel::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: #e8f5e9;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-card-carousel:hover {
    transform: translateY(-5px);
    border-color: #1c9939;
    box-shadow: 0 8px 30px rgba(28, 153, 57, 0.15);
}


.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #e8f5e9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: #e8f5e9;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: #158030;
    box-shadow: 0 12px 30px rgba(21, 128, 48, 0.2);
}

.testimonial-stars {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffc107;
}

.testimonial-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
    font-size: 16px;
}

.testimonial-card-carousel .testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.testimonial-card-carousel .testimonial-author {
    margin-top: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #e8f5e9;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1c9939 0%, #158030 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

.author-name {
    font-weight: 600;
    color: #158030;
    margin-bottom: 5px;
}

.author-role {
    font-size: 14px;
    color: #888;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1c9939 0%, #158030 100%);
    padding: 80px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 80px 0;
    box-shadow: 0 10px 40px rgba(28, 153, 57, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    margin-bottom: 35px;
}

/* Target Audience Section */
.target-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.audience-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #e8f5e9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #158030 0%, #1c9939 100%);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.audience-card:hover::before {
    transform: scaleX(1);
}

.audience-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #158030;
    box-shadow: 0 15px 40px rgba(21, 128, 48, 0.2);
}

.audience-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s;
    border: 2px solid #e8f5e9;
}

.audience-icon {
    font-size: 40px;
    transition: transform 0.3s;
}

.audience-card:hover .audience-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #158030 0%, #1c9939 100%);
    border-color: #158030;
}

.audience-card:hover .audience-icon {
    transform: scale(1.2);
    filter: brightness(0) invert(1);
}

.audience-card h3 {
    color: #158030;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.audience-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

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

.audience-benefits li {
    color: #555;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

/* Become Local Section */
.become-local-section {
    background: linear-gradient(135deg, #1c9939 0%, #158030 100%);
    padding: 80px 50px;
    border-radius: 20px;
    margin: 100px 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(28, 153, 57, 0.3);
    position: relative;
    overflow: hidden;
}

.become-local-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.become-local-content {
    position: relative;
    z-index: 1;
}

.become-local-icon {
    font-size: 72px;
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

.become-local-section h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.become-local-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 35px;
}

.become-local-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.local-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    font-weight: 500;
}

.local-benefit-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

/* Mission & Vision Cards */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.mission-card,
.vision-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #e8f5e9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
    text-align: center;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    border-color: #1c9939;
    box-shadow: 0 12px 30px rgba(28, 153, 57, 0.15);
}

.mission-icon,
.vision-icon {
    font-size: 64px;
    margin-bottom: 25px;
}

.mission-card h2,
.vision-card h2 {
    color: #1c9939;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

/* Offer Grid */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.offer-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #e8f5e9;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: #1c9939;
    box-shadow: 0 15px 40px rgba(28, 153, 57, 0.15);
}

.offer-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.offer-card h3 {
    color: #1c9939;
    margin-bottom: 15px;
    font-size: 22px;
}

.offer-card p {
    color: #666;
    line-height: 1.8;
}

/* Guide System */
.guide-system {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    background: #f9f9f9;
    padding: 50px;
    border-radius: 20px;
    border: 2px solid #e8f5e9;
}

.guide-content h2 {
    color: #1c9939;
    margin-bottom: 25px;
    font-size: 32px;
}

.guide-content p {
    color: #555;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 30px;
}

.system-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.system-feature {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e8f5e9;
    transition: all 0.3s;
}

.system-feature:hover {
    transform: translateY(-5px);
    border-color: #1c9939;
}

.system-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.system-feature h4 {
    color: #1c9939;
    margin-bottom: 10px;
    font-size: 18px;
}

.system-feature p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.guide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-badge {
    background: linear-gradient(135deg, #1c9939 0%, #158030 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 40px rgba(28, 153, 57, 0.3);
    transition: transform 0.3s;
}

.visual-badge:hover {
    transform: scale(1.05) rotate(2deg);
}

.badge-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.badge-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.badge-label {
    font-size: 18px;
    opacity: 0.9;
}

/* Values Section */
/* Enhanced Values Section */
.values-section-enhanced {
    padding: 60px 0;
}

.values-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.value-card-enhanced {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 18px;
    border: 2px solid #e8f5e9;
    transition: all 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.value-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1c9939, #158030);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.value-card-enhanced:hover::before {
    transform: scaleX(1);
}

.value-card-enhanced:hover {
    transform: translateY(-10px);
    border-color: #1c9939;
    box-shadow: 0 15px 40px rgba(28, 153, 57, 0.2);
}

.value-icon-enhanced {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s;
}

.value-card-enhanced:hover .value-icon-enhanced {
    transform: scale(1.1) rotate(5deg);
}

.value-card-enhanced h3 {
    color: #1c9939;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-description {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.value-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.value-tag {
    background: #e8f5e9;
    color: #158030;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.values-section {
    background: #f9f9f9;
    padding: 60px 40px;
    border-radius: 20px;
    border: 2px solid #e8f5e9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #e8f5e9;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #1c9939;
    box-shadow: 0 12px 30px rgba(28, 153, 57, 0.15);
}

.value-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #1c9939;
    margin-bottom: 15px;
    font-size: 22px;
}

.value-card p {
    color: #666;
    line-height: 1.8;
}

/* Timeline Section */
/* Enhanced Timeline Section */
.timeline-section-enhanced {
    padding: 60px 0;
}

.timeline-enhanced {
    position: relative;
    padding: 50px 0;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-enhanced::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1c9939 0%, #158030 100%);
    border-radius: 2px;
}

.timeline-item-enhanced {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    padding-left: 50px;
}

.timeline-item-enhanced::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 20px;
    width: 16px;
    height: 16px;
    background: #1c9939;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 3px #1c9939;
    z-index: 2;
}

.timeline-year {
    font-size: 32px;
    font-weight: 900;
    color: #1c9939;
    min-width: 100px;
    line-height: 1;
}

.timeline-content-enhanced {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e8f5e9;
    flex: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.timeline-content-enhanced:hover {
    transform: translateX(5px);
    border-color: #1c9939;
    box-shadow: 0 8px 30px rgba(28, 153, 57, 0.15);
}

.timeline-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: inline-block;
}

.timeline-content-enhanced h3 {
    color: #1c9939;
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.timeline-content-enhanced p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.timeline-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.achievement-badge {
    background: linear-gradient(135deg, #1c9939 0%, #158030 100%);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.timeline-section {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 20px;
    border: 2px solid #e8f5e9;
}

.timeline {
    position: relative;
    padding: 40px 0;
    margin-top: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1c9939 0%, #158030 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1c9939 0%, #158030 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(28, 153, 57, 0.3);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin: 0 40px;
}

.timeline-content {
    flex: 1;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e8f5e9;
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: translateX(10px);
    border-color: #1c9939;
    box-shadow: 0 4px 15px rgba(28, 153, 57, 0.1);
}

.timeline-item:nth-child(even) .timeline-content:hover {
    transform: translateX(-10px);
}

.timeline-content h3 {
    color: #1c9939;
    margin-bottom: 10px;
    font-size: 24px;
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 15px;
    border: 2px solid #e8f5e9;
    max-width: 700px;
    margin: 40px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease-out;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #158030;
    font-weight: 600;
    font-size: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background-color: #f9f9f9;
    color: #333;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #158030;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(21, 128, 48, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-info {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #e8f5e9;
    margin-top: 40px;
    text-align: center;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 18px;
    color: #555;
}

.contact-info a {
    color: #158030;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s;
}

.contact-info a:hover {
    color: #1c9939;
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
}

.faq-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e8f5e9;
    margin-bottom: 20px;
    transition: all 0.3s;
    cursor: pointer;
}

.faq-item:hover {
    border-color: #158030;
    box-shadow: 0 4px 15px rgba(21, 128, 48, 0.15);
    transform: translateX(5px);
}

.faq-question {
    color: #158030;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.faq-answer {
    color: #666;
    line-height: 1.8;
}

/* Info Cards */
.info-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #158030;
    margin: 25px 0;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        height: auto;
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .banner-brand {
        text-align: center;
    }

    .brand-link {
        font-size: 24px;
    }

    .menu {
        font-size: 14px;
        gap: 5px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .menu a {
        padding: 10px 16px;
        white-space: nowrap;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

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

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .home-hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .home-stat-number {
        font-size: 48px;
    }

    .home-stat-label {
        font-size: 18px;
    }

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

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-label-large {
        font-size: 16px;
    }

    .target-audience-grid {
        grid-template-columns: 1fr;
    }

    .become-local-section {
        padding: 50px 30px;
    }

    .become-local-section h2 {
        font-size: 28px;
    }

    .become-local-section p {
        font-size: 16px;
    }

    .become-local-benefits {
        flex-direction: column;
        gap: 20px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .guide-system {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .system-features {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .timeline-marker {
        position: absolute;
        left: 0;
        margin: 0;
        width: 60px;
        height: 60px;
        font-size: 16px;
    }

    .timeline-content:hover {
        transform: translateX(5px) !important;
    }

    .content {
        padding: 30px 15px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1c9939;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #158030;
}

/* ============================================
   KVKK Page Specific Styles
   ============================================ */

/* KVKK Hero Section */
.kvkk-hero {
    background: #ffffff;
    padding: 35px 40px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #e0e0e0;
    border-bottom: 3px solid #1c9939;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    animation: fadeInUp 0.6s ease-out;
}

.kvkk-hero h1 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #1c9939;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.kvkk-hero p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.kvkk-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: #fff;
    margin-top: 10px;
}

/* Quick Navigation */
.kvkk-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 15px;
    border: 2px solid #e8f5e9;
    position: sticky;
    top: 90px;
    z-index: 100;
}

.nav-item {
    padding: 12px 24px;
    background: #ffffff;
    border: 2px solid #e8f5e9;
    border-radius: 8px;
    color: #1c9939;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 15px;
}

.nav-item:hover {
    background: #1c9939;
    border-color: #1c9939;
    color: #fff;
    transform: translateY(-2px);
}

/* KVKK Sections */
.kvkk-section {
    margin-bottom: 60px;
    scroll-margin-top: 120px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #e8f5e9;
}

.section-icon {
    font-size: 36px;
}

.section-header h2 {
    margin: 0;
    font-size: 32px;
    color: #1c9939;
}

/* KVKK Cards */
.kvkk-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #e8f5e9;
    margin-bottom: 25px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.kvkk-card:hover {
    border-color: #1c9939;
    box-shadow: 0 8px 25px rgba(28, 153, 57, 0.15);
    transform: translateY(-3px);
}

.kvkk-card h3 {
    color: #1c9939;
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 0;
}

.kvkk-card h4 {
    color: #1c9939;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.kvkk-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.kvkk-card ul,
.kvkk-card ol {
    color: #555;
    line-height: 2;
    padding-left: 25px;
    margin: 15px 0;
}

.kvkk-card li {
    margin-bottom: 8px;
}

/* Info Card */
.info-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #1c9939;
    margin-bottom: 25px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.info-item {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e8f5e9;
}

.info-label {
    font-weight: bold;
    color: #1c9939;
    min-width: 150px;
}

.info-value {
    color: #555;
}

.info-link {
    color: #1c9939;
    text-decoration: none;
    transition: color 0.3s;
}

.info-link:hover {
    color: #158030;
    text-decoration: underline;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin: 20px 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    color: #555;
    background: #ffffff;
}

.data-table thead {
    background: #e8f5e9;
}

.data-table th {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
    color: #1c9939;
    font-weight: bold;
}

.data-table td {
    padding: 15px;
    border: 1px solid #e0e0e0;
}

.data-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.data-table tbody tr:hover {
    background: #e8f5e9;
}

/* Sub Sections */
.sub-section {
    margin-top: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #1c9939;
}

/* Note Boxes */
.note-box {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #1c9939;
    margin-top: 20px;
    color: #555;
}

.note-text {
    color: #888;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 15px;
}

.note-text-small {
    color: #888;
    font-size: 13px;
    margin-top: 10px;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.right-item {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #1c9939;
    color: #555;
}

/* Contact Box */
.contact-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #e8f5e9;
    margin-top: 25px;
    text-align: center;
}

.contact-link {
    display: inline-block;
    color: #1c9939;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    margin: 15px 0;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #158030;
}

/* Consent Box */
.consent-box {
    background: #e8f5e9;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #1c9939;
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

.consent-form-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #1c9939;
    margin-top: 20px;
}

.checkbox-display {
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 15px 0;
    color: #555;
    font-size: 16px;
    border: 2px solid #e8f5e9;
}

/* Highlight Card */
.highlight-card {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #1c9939;
}

.highlight-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.highlight-icon {
    font-size: 48px;
}

.highlight-header h3 {
    margin: 0;
    color: #1c9939;
}

/* Action Grid */
.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.action-card {
    padding: 25px;
    background: #fff5f5;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
    text-align: center;
    transition: all 0.3s;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.2);
}

.action-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.action-card h4 {
    color: #ff6b6b;
    margin-bottom: 10px;
    font-size: 18px;
}

.action-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Warning Box */
.warning-box {
    background: #fff5f5;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
    margin-top: 20px;
}

.warning-box strong {
    color: #ff6b6b;
    display: block;
    margin-bottom: 10px;
}

/* Intro Text */
.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, #1c9939 0%, #158030 100%);
    text-align: center;
    border: none;
}

.cta-card h3 {
    color: #fff;
    margin-bottom: 15px;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
}

/* KVKK Footer */
.kvkk-footer {
    background: #f9f9f9;
    padding: 50px 40px;
    border-radius: 15px;
    border: 2px solid #e8f5e9;
    text-align: center;
    margin-top: 60px;
}

.kvkk-footer h3 {
    color: #1c9939;
    font-size: 28px;
    margin-bottom: 15px;
}

.kvkk-footer p {
    color: #555;
    font-size: 18px;
    margin-bottom: 30px;
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e8f5e9;
}

.about-header h1 {
    font-size: 36px;
    color: #1c9939;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.about-intro {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Hero */
.contact-hero {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #1c9939 0%, #158030 100%);
    border-radius: 20px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(28, 153, 57, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.contact-hero-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

.contact-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.contact-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Contact Info Card */
.contact-info-card {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 60px;
    border: 1px solid #e0e0e0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8f5e9;
}

.contact-info-header h2 {
    color: #1c9939;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.contact-email-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 20px;
    border: none;
}

.email-content {
    text-align: center;
    width: 100%;
}

.email-label {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-link {
    font-size: 20px;
    color: #1c9939;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.email-link:hover {
    color: #158030;
    text-decoration: underline;
}

.contact-note {
    text-align: center;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Enhanced FAQ Section */
.faq-section-enhanced {
    margin-top: 60px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
}

.faq-header h2 {
    color: #1c9939;
    font-size: 36px;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    gap: 25px;
}

.faq-item-enhanced {
    background: #ffffff;
    border-radius: 15px;
    border: 2px solid #e8f5e9;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.faq-item-enhanced:hover {
    border-color: #1c9939;
    box-shadow: 0 8px 25px rgba(28, 153, 57, 0.15);
}

.faq-item-enhanced.faq-active {
    border-color: #1c9939;
    box-shadow: 0 8px 30px rgba(28, 153, 57, 0.2);
}

.faq-question-enhanced {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
    background: #f9f9f9;
    transition: all 0.3s;
    user-select: none;
    position: relative;
}

.faq-question-enhanced:hover {
    background: #e8f5e9;
}

.faq-item-enhanced.faq-active .faq-question-enhanced {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    border-bottom: 2px solid #1c9939;
}

.faq-number {
    font-size: 24px;
    font-weight: 900;
    color: #1c9939;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #1c9939;
    flex-shrink: 0;
}

.faq-item-enhanced.faq-active .faq-number {
    background: #1c9939;
    color: #ffffff;
}

.faq-question-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    flex: 1;
    line-height: 1.4;
}

.faq-item-enhanced.faq-active .faq-question-text {
    color: #1c9939;
}

.faq-toggle-icon {
    font-size: 20px;
    font-weight: 600;
    color: #1c9939;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 6px;
    border: 2px solid #1c9939;
    flex-shrink: 0;
    transition: all 0.3s ease;
    line-height: 1;
}

.faq-item-enhanced.faq-active .faq-toggle-icon {
    background: #1c9939;
    color: #ffffff;
    transform: rotate(0deg);
}

.faq-answer-enhanced {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 30px;
    background: #ffffff;
}

.faq-item-enhanced.faq-active .faq-answer-enhanced {
    padding: 0 30px 25px 100px;
}

.faq-answer-content {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    padding-top: 5px;
}

/* Responsive KVKK */
@media (max-width: 768px) {
    .kvkk-hero {
        padding: 30px 25px;
        max-width: 100%;
    }

    .kvkk-hero h1 {
        font-size: 24px;
    }

    .kvkk-hero p {
        font-size: 15px;
    }

    .kvkk-nav {
        flex-direction: column;
        position: relative;
        top: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .kvkk-card {
        padding: 25px 20px;
    }

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

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

    .data-table {
        font-size: 14px;
    }

    .data-table th,
    .data-table td {
        padding: 10px;
    }

    /* New Hero Responsive */
    /* Home Hero Responsive */
    .home-hero {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .home-hero-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .hero-logo-image {
        width: 200px;
        height: 200px;
    }

    .home-hero-text {
        text-align: center;
        max-width: 100%;
    }

    .home-hero-description {
        font-size: 18px;
        line-height: 1.6;
    }

    /* Benefits Section Responsive */
    .benefits-section {
        margin: 50px 0;
        padding: 0 15px;
    }

    .benefits-content h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-item {
        padding: 20px;
    }

    /* How It Works Responsive */
    .how-it-works {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .step-card {
        padding: 25px 20px;
    }

    /* Target Audience Responsive */
    .target-audience-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .audience-card {
        padding: 25px 20px;
    }

    /* Testimonials Carousel Responsive */
    .testimonials-carousel-container {
        padding: 20px 15px;
        margin: 40px 0;
    }

    .testimonial-card-carousel {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
        height: auto;
        min-height: 250px;
    }

    .testimonial-card-carousel .testimonial-text {
        font-size: 14px;
        -webkit-line-clamp: 5;
        line-clamp: 5;
    }

    /* Section Headers Responsive */
    .section-header-center h2 {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    /* Features Responsive */
    .features {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .home-hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .home-stat-number {
        font-size: 40px;
    }



    .new-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 30px;
    }

    .hero-logo-large {
        width: 150px;
        height: 150px;
    }

    .hero-logo-text {
        font-size: 36px;
    }

    .hero-main-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }

    .stat-number-large {
        font-size: 56px;
    }

    .stat-text-large {
        font-size: 16px;
    }

    /* About Hero Responsive */
    .about-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }

    .about-header h1 {
        font-size: 28px;
    }

    .about-intro {
        font-size: 16px;
    }

    /* Contact Responsive */
    .contact-hero {
        padding: 50px 30px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-hero p {
        font-size: 18px;
    }

    .contact-info-card {
        padding: 30px 25px;
        max-width: 100%;
    }

    .contact-info-header h2 {
        font-size: 22px;
    }

    .email-link {
        font-size: 18px;
    }

    .contact-note {
        font-size: 14px;
    }

    .faq-question-enhanced {
        flex-wrap: wrap;
        gap: 15px;
    }

    .faq-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
        min-width: 40px;
    }

    .faq-toggle-icon {
        width: 35px;
        height: 35px;
        font-size: 28px;
    }

    .faq-answer-enhanced {
        padding: 0 20px !important;
    }

    .faq-item-enhanced.faq-active .faq-answer-enhanced {
        padding: 0 20px 20px 20px !important;
    }

    .faq-question-text {
        font-size: 18px;
        flex: 1;
        min-width: 200px;
    }

    /* Values Enhanced Responsive */
    .values-grid-enhanced {
        grid-template-columns: 1fr;
    }

    /* Timeline Enhanced Responsive */
    .timeline-enhanced::before {
        left: 20px;
    }

    .timeline-item-enhanced {
        padding-left: 70px;
    }

    .timeline-item-enhanced::before {
        left: 12px;
    }

    .timeline-year {
        font-size: 24px;
        min-width: 80px;
    }

    .timeline-content-enhanced {
        padding: 25px 20px;
    }

    .timeline-content-enhanced h3 {
        font-size: 20px;
    }

    .timeline-content-enhanced p {
        font-size: 15px;
    }

    /* Content Padding Responsive */
    .content {
        padding: 40px 15px;
    }

    /* KVKK Section Responsive */
    .kvkk-section {
        padding: 0 15px;
    }

    .kvkk-card {
        padding: 25px 20px;
    }

    .kvkk-card h3 {
        font-size: 20px;
    }

    .sub-section {
        padding: 15px;
    }

    /* Contact Info Card Responsive */
    .contact-info-card {
        padding: 30px 25px;
        margin-bottom: 40px;
    }

    .contact-email-box {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .email-content {
        text-align: center;
    }

    .email-link {
        font-size: 20px;
    }

    /* FAQ Enhanced Responsive */
    .faq-section-enhanced {
        padding: 0 15px;
    }

    .faq-header h2 {
        font-size: 28px;
    }

    .faq-grid {
        gap: 20px;
    }

    /* Values Enhanced Responsive */
    .values-section-enhanced {
        padding: 40px 0;
    }

    .value-card-enhanced {
        padding: 30px 25px;
    }

    .value-icon-enhanced {
        font-size: 40px;
    }

    .value-card-enhanced h3 {
        font-size: 22px;
    }

    .value-description {
        font-size: 15px;
    }

    /* About Header Responsive */
    .about-header {
        padding: 0 15px 20px;
    }

    /* Table Responsive */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -15px;
        padding: 0 15px;
    }

    .data-table {
        min-width: 600px;
        font-size: 13px;
    }

    .data-table th,
    .data-table td {
        padding: 8px;
    }

    /* Home Hero Stats Compact Responsive */
    .home-hero-stats-compact {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .home-stat-item-compact {
        min-width: 100%;
    }

    .home-stat-number-compact {
        font-size: 36px;
    }

    .home-stat-label-compact {
        font-size: 13px;
    }

    /* Benefits Section Responsive */
    .benefits-section {
        margin: 50px 0;
        padding: 0 15px;
    }

    .benefits-content h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-item {
        padding: 20px;
    }

    /* How It Works Responsive */
    .how-it-works {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .step-card {
        padding: 25px 20px;
    }

    /* Target Audience Responsive */
    .target-audience-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .audience-card {
        padding: 25px 20px;
    }

    /* Testimonials Carousel Responsive */
    .testimonials-carousel-container {
        padding: 20px 15px;
        margin: 40px 0;
    }

    .testimonial-card-carousel {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
        height: auto;
        min-height: 250px;
    }

    .testimonial-card-carousel .testimonial-text {
        font-size: 14px;
        -webkit-line-clamp: 5;
        line-clamp: 5;
    }

    /* Section Headers Responsive */
    .section-header-center {
        padding: 0 15px;
    }

    .section-header-center h2 {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    /* Features Responsive */
    .features {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    /* Offer Grid Responsive */
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .offer-card {
        padding: 25px 20px;
    }

    /* Mission Vision Responsive */
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .mission-card, .vision-card {
        padding: 30px 25px;
    }

    /* Guide System Responsive */
    .guide-system {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .system-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .banner {
        padding: 12px 15px;
    }

    .brand-link {
        font-size: 20px;
    }

    .menu {
        font-size: 13px;
        gap: 3px;
        flex-wrap: wrap;
    }

    .menu a {
        padding: 8px 12px;
        white-space: nowrap;
        font-size: 12px;
    }

    .home-hero {
        padding: 25px 15px;
    }

    .hero-logo-image {
        width: 180px;
        height: 180px;
    }

    .home-hero-description {
        font-size: 16px;
    }

    .home-hero-stats-compact {
        gap: 12px;
    }

    .home-stat-item-compact {
        padding: 12px 20px;
    }

    .home-stat-number-compact {
        font-size: 32px;
    }

    .section-header-center h2 {
        font-size: 24px;
    }

    .testimonial-card-carousel {
        min-width: 240px;
        max-width: 240px;
        padding: 18px;
    }

    .testimonials-carousel-container {
        padding: 20px 5px;
    }

    .testimonials-carousel {
        gap: 15px;
    }

    .table-container {
        margin: 0 -10px;
        padding: 0 10px;
    }

    .data-table {
        font-size: 12px;
        min-width: 550px;
    }

    .data-table th,
    .data-table td {
        padding: 6px;
    }

    .content {
        padding: 30px 10px;
    }

    .benefits-content h2 {
        font-size: 24px;
    }

    .kvkk-hero {
        padding: 25px 20px;
    }

    .kvkk-hero h1 {
        font-size: 22px;
    }

    .contact-info-card {
        padding: 25px 20px;
    }

    .faq-header h2 {
        font-size: 24px;
    }

    .about-header h1 {
        font-size: 24px;
    }
}
