* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #3b82f6;
    --secondary-color: #1e40af;
    --background-color: #0f172a;
    --card-bg: #1e293b;
    --text-color: #e2e8f0;
    --text-muted: #94a3b8;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --container-width: 1400px;
    /* Genişletilmiş konteyner genişliği */
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    width: 100%;
    overflow-x: hidden;
}

header {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    width: 100%;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

header p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

nav {
    background-color: rgba(15, 23, 42, 0.9);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(10px);
    width: 100%;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.5rem 2rem;
    background-color: rgba(15, 23, 42, 0.95);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-brand a {
    white-space: nowrap;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand a img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary-color);
    background-color: transparent;
}

.nav-links a:hover::after {
    width: 80%;
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    width: 80%;
}

.nav-icons {
    display: flex;
    gap: 1rem;
}

.nav-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.nav-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.nav-icon .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--background-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.section-title {
    text-align: center;
    margin: 3rem 0;
    font-size: 2rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background-color: rgba(30, 41, 59, 0.8);
    color: var(--text-color);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover {
    background-color: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

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

.product-search {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border-radius: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    background-color: rgba(30, 41, 59, 0.8);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
}

.product-sort {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
    align-items: center;
}

.sort-label {
    margin-right: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.sort-select {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    background-color: rgba(30, 41, 59, 0.8);
    color: var(--text-color);
    cursor: pointer;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.product-card {
    background: var(--card-bg);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--card-shadow);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(15, 23, 42, 0.8);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 1rem;
    color: var(--text-muted);
}

.no-products i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.no-products h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .product-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        justify-content: flex-start;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

.product-info {
    padding: 1.5rem;
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.product-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    width: 100%;
    font-weight: 500;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.btn:hover {
    background-color: var(--secondary-color);
}

/* Feature Section Styles */
.feature-section {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-bottom: 5rem;
}

.feature-widget {
    display: flex;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
}

.feature-widget.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-image {
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-widget:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.feature-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 0;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    align-self: flex-start;
    transition: all 0.3s ease;
}

.feature-btn:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateX(5px);
}

/* Media Queries for Feature Section */
@media (max-width: 990px) {

    .feature-widget,
    .feature-widget.reverse {
        flex-direction: column;
    }

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

    .feature-content {
        padding: 2rem;
    }
}

/* Stats Counter Section Styles */
.stats-counter-section {
    background: var(--card-bg);
    padding: 5rem 0;
    margin: 5rem 0;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.stats-counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    opacity: 0.08;
    z-index: 0;
}

.counter-intro {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.counter-intro h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.counter-intro p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.counters-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    max-width: var(--container-width);
    margin: 0 auto;
}

.counter-widget {
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background-color: rgba(15, 23, 42, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.counter-widget:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.counter-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    height: 70px;
    width: 70px;
    line-height: 70px;
    background-color: rgba(30, 41, 59, 0.8);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.15);
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.counter-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
}

.counter-title {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 990px) {
    .counters-container {
        gap: 1.5rem;
    }

    .counter-widget {
        min-width: 180px;
        max-width: 220px;
        padding: 1.5rem;
    }

    .counter {
        font-size: 2.5rem;
    }

    .counter-suffix {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .counter-intro h2 {
        font-size: 2rem;
    }

    .counter-widget {
        flex: 1 0 40%;
    }
}

@media (max-width: 480px) {
    .stats-counter-section {
        padding: 3rem 0;
    }

    .counter-widget {
        flex: 1 0 100%;
        max-width: 100%;
    }
}

/* Slider Styles */
.slider-container {
    width: 100vw;
    position: relative;
    margin-bottom: 3rem;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    height: 700px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    max-width: var(--container-width);
    margin: 0 auto;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.slider-nav {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: white;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.slider-arrow {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1.2rem;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
}

/* WhatsApp Contact Widget Styles */
.whatsapp-contact-container {
    padding: 3rem 0;
    background-color: var(--background-color);
    margin-top: 5rem;
}

.whatsapp-widget {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.whatsapp-content {
    background: var(--card-bg);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.whatsapp-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1563986768609-322da13575f3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 64, 175, 0.2));
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    z-index: 1;
}

.whatsapp-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    background-color: rgba(59, 130, 246, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.1);
}

.whatsapp-title h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.whatsapp-title p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.whatsapp-body {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.whatsapp-body p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 2rem !important;
}

.whatsapp-response-time i {
    color: var(--primary-color);
}

.whatsapp-response-time strong {
    color: var(--text-color);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(59, 130, 246, 0.4);
}

.whatsapp-button i {
    font-size: 1.4rem;
}

.whatsapp-working-hours {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0 !important;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 15px rgba(59, 130, 246, 0.4);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-header {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .whatsapp-button {
        width: 100%;
    }
}

footer {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: var(--text-color);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1.5rem;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

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

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem 0 0 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Large screens optimization */
@media (min-width: 1600px) {
    :root {
        --container-width: 1600px;
    }

    .products {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .nav-links,
    .nav-icons {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--card-bg);
        padding: 1rem;
        box-shadow: var(--card-shadow);
        z-index: 1000;
    }

    .nav-icons.active {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }

    nav ul {
        justify-content: space-between;
    }

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

    .products {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* Education Programs Mobil Düzeltme */
    .education-programs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .program-card {
        margin: 0 1rem;
    }

    /* Feature widgets mobil düzeltme */
    .feature-widget {
        flex-direction: column !important;
        text-align: center;
    }

    .feature-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .feature-content {
        padding: 0 1rem;
    }

    /* Services Overview mobil düzeltme */
    .services-overview .feature-widget {
        margin: 40px 0 !important;
    }

    /* Technology Expertise mobil düzeltme */
    .technology-expertise .feature-widget {
        margin: 40px 0 !important;
    }

    /* Success Stories mobil düzeltme */
    .success-stories .feature-widget {
        margin-bottom: 40px !important;
    }

    /* Contact CTA mobil düzeltme */
    .contact-cta .feature-widget {
        margin: 40px 0 !important;
    }

    .slide {
        height: 300px;
    }

    .slide-content {
        padding: 2rem 1.5rem !important;
    }

    .slide-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .slider-container {
        height: 350px;
    }

    /* Modal responsive düzeltmeleri */
    .modal-content {
        width: 95% !important;
        max-height: 95vh !important;
        margin: 1rem;
    }

    .modal-body {
        padding: 20px !important;
        max-height: 70vh !important;
    }

    .modal-footer {
        padding: 15px 20px !important;
        flex-direction: column !important;
        gap: 1rem;
    }

    .modal-contact-btn,
    .modal-close-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Form responsive düzeltmeleri */
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

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

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }

    nav {
        padding: 0.5rem;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    .container {
        margin: 1rem auto;
        padding: 0 1rem;
    }

    .slide {
        height: 250px;
    }

    .slide-content {
        padding: 1.5rem 1rem !important;
    }

    .slide-content h2 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .slider-container {
        height: 250px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        margin-top: 1rem !important;
        padding: 0 1rem;
    }

    .stat {
        min-width: 150px;
        width: 100%;
        max-width: 200px;
        padding: 0.75rem 0.5rem !important;
    }

    .stat-number {
        font-size: 1.75rem !important;
        margin-bottom: 0.25rem !important;
    }

    .stat-label {
        font-size: 0.85rem !important;
    }

    /* Küçük ekranlar için özel düzeltmeler */
    .education-hero-content h1 {
        font-size: 2rem !important;
    }

    .about-hero-content h1 {
        font-size: 2.5rem !important;
    }

    .contact-hero-content h1 {
        font-size: 2rem !important;
    }

    /* Program cards küçük ekranlar */
    .program-card {
        margin: 0 0.5rem;
        padding: 1.5rem;
    }

    .program-content {
        padding: 1.5rem;
    }

    /* Education filters küçük ekranlar */
    .education-filters {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .education-filters .filter-btn {
        width: 200px;
    }

    /* Stats küçük ekranlar */
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-top: 1.5rem !important;
    }

    .stat {
        min-width: 200px;
        width: 100%;
        max-width: 250px;
        padding: 0.75rem !important;
    }

    .stat-number {
        font-size: 2rem !important;
    }

    .stat-label {
        font-size: 0.9rem !important;
    }

    /* CTA buttons küçük ekranlar */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    /* Feature widget extra small */
    .feature-widget {
        margin: 30px 0 !important;
    }

    .feature-content h3 {
        font-size: 1.3rem !important;
    }

    .feature-content p {
        font-size: 0.9rem !important;
    }

    /* Kariyer sayfası küçük ekran düzeltmeleri */
    .career-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .filter-btn {
        width: 200px;
        text-align: center;
    }

    .positions-grid {
        grid-template-columns: 1fr !important;
    }

    .position-card {
        margin: 0 0.5rem;
    }

    .position-tags {
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    .position-tags span {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }

    .application-section {
        margin: 0 1rem;
        padding: 1rem;
    }

    .application-content {
        padding: 1rem;
    }

    /* Genel mobil iyileştirmeler */
    .container {
        max-width: 100% !important;
        padding: 0 0.5rem;
    }

    /* Navigation düzeltmeleri */
    .nav-links.active {
        background-color: var(--card-bg) !important;
        border-radius: 0 0 1rem 1rem;
        margin-top: 0.5rem;
    }

    /* Hero sections genel düzeltme */
    .career-hero,
    .education-hero,
    .about-hero,
    .contact-hero {
        height: 250px !important;
        margin-bottom: 30px;
    }

    /* Table responsive */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Modal improvements */
    .modal-content {
        border-radius: 1rem 1rem 0 0 !important;
        position: fixed !important;
        bottom: 0 !important;
        top: auto !important;
        transform: none !important;
        max-height: 90vh !important;
    }

    /* Button improvements */
    .btn, .apply-btn, .enroll-btn {
        min-height: 44px;
        font-size: 0.9rem;
    }
}

/* Hakkımızda Sayfası Stilleri */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=100');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    padding: 60px 0;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.values-section {
    padding: 60px 0;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

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

.value-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

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

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.value-card:hover i {
    background: rgba(59, 130, 246, 0.2);
    transform: rotateY(180deg);
}

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

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.team-section {
    padding: 60px 0;
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #333;
}

.team-member .position {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-member .bio {
    color: #666;
}

.achievements-section {
    padding: 60px 0;
    background-color: var(--card-bg);
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1557426272-fc759fdf7a8d?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.achievements-timeline {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
}

.achievements-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.achievement {
    display: flex;
    justify-content: flex-start;
    padding: 20px 0;
    width: 50%;
    position: relative;
}

.achievement:nth-child(even) {
    margin-left: 50%;
}

.achievement .year {
    position: absolute;
    right: calc(100% + 30px);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.achievement:nth-child(even) .year {
    right: auto;
    left: calc(100% + 30px);
}

.achievement .content {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.achievement .content:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.achievement .content::before {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    border: 4px solid var(--background-color);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.achievement:nth-child(even) .content::before {
    right: auto;
    left: -40px;
}

.achievement .content h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.achievement .content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-story {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

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

    .achievement {
        width: 100%;
        margin-left: 0 !important;
        padding-left: 80px;
    }

    .achievement .year {
        left: 0 !important;
        right: auto !important;
        z-index: 2;
    }

    .achievement .content::before {
        left: -40px !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }

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

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

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

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

    .value-card {
        padding: 1.5rem;
    }

    .achievement .year {
        padding: 6px 15px;
        font-size: 0.9rem;
    }

    .achievement .content {
        padding: 1.2rem;
    }
}

/* Kariyer Sayfası Stilleri */
.career-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=100');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.career-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
    z-index: 1;
}

.career-hero-content {
    position: relative;
    z-index: 2;
}

.career-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.career-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.career-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.position-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

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

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.position-header i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.position-card:hover .position-header i {
    transform: rotateY(180deg);
    background: rgba(59, 130, 246, 0.2);
}

.position-type {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.position-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.position-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.position-tags span {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
}

.position-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.apply-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Başvuru Formu Bölümü */
.application-section {
    margin: 4rem 0;
    animation: fadeIn 0.3s ease;
}

.application-content {
    background: var(--card-bg);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.application-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1557426272-fc759fdf7a8d?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    opacity: 0.03;
    z-index: 0;
}

.application-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 64, 175, 0.2));
    position: relative;
    z-index: 1;
}

.application-header h3 {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 600;
}

.close-btn {
    background: rgba(59, 130, 246, 0.1);
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.8rem;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.2);
    transform: rotate(90deg);
}

.application-form {
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.8rem;
    background: rgba(30, 41, 59, 0.5);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    background: rgba(30, 41, 59, 0.7);
}

.form-group input[type="file"] {
    padding: 0.8rem;
    background: none;
    border: 2px dashed rgba(59, 130, 246, 0.3);
    cursor: pointer;
}

.form-group input[type="file"]:hover {
    border-color: var(--primary-color);
    background: rgba(59, 130, 246, 0.05);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 0.4rem;
    border: 2px solid rgba(59, 130, 246, 0.3);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.submit-btn:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .application-header {
        padding: 1.5rem;
    }

    .application-header h3 {
        font-size: 1.4rem;
    }

    .application-form {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
    }

    .submit-btn {
        padding: 1rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ürünler Sayfası Stilleri */
.products-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=100');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
    z-index: 1;
}

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

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

.products-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.products-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Sidebar Styles */
.products-sidebar {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.sidebar-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.sidebar-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-section h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.category-list,
.license-list {
    list-style: none;
}

.category-label,
.license-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-label:hover,
.license-label:hover {
    color: var(--text-color);
}

.category-label input[type="checkbox"],
.license-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 0.3rem;
    border: 2px solid rgba(59, 130, 246, 0.3);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.category-label input[type="checkbox"]:checked,
.license-label input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.category-label input[type="checkbox"]:checked::before,
.license-label input[type="checkbox"]:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
}

.count {
    margin-left: auto;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: rgba(59, 130, 246, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
}

.price-range {
    padding: 0.5rem 0;
}

.range-inputs {
    position: relative;
    height: 6px;
    margin-bottom: 1.5rem;
}

.range-input {
    position: absolute;
    width: 100%;
    height: 100%;
    background: none;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
}

.range-input::-webkit-slider-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
    border: 2px solid var(--background-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.range-input::-webkit-slider-runnable-track {
    height: 6px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 3px;
}

.range-values {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.clear-filters {
    width: 100%;
    background: rgba(59, 130, 246, 0.1);
    color: var(--text-color);
    border: none;
    padding: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.clear-filters:hover {
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary-color);
}

/* Products Main Content */
.products-main {
    flex: 1;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: var(--card-shadow);
}

.view-options {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 0.5rem;
    border-radius: 0.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
}

.view-btn.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
}

.sort-select {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    background: rgba(30, 41, 59, 0.5);
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.9rem;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Grid View */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* List View */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.products-list .product-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
}

.products-list .product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.products-list .product-card img {
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .products-container {
        grid-template-columns: 250px 1fr;
    }
}

@media (max-width: 990px) {
    .products-container {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        position: fixed;
        left: -300px;
        top: 0;
        bottom: 0;
        width: 300px;
        z-index: 1000;
        overflow-y: auto;
        transition: left 0.3s ease;
    }

    .products-sidebar.active {
        left: 0;
    }

    .products-list .product-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .products-hero-content h1 {
        font-size: 2rem;
    }

    .products-hero {
        height: 200px;
    }

    .products-header {
        flex-direction: column;
        gap: 1rem;
    }

    .sort-select {
        width: 100%;
    }
}

/* Eğitimler Sayfası Stilleri */
.education-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=100');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.education-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
    z-index: 1;
}

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

.education-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.education-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Eğitim Filtreleri */
.education-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.education-filters .filter-btn {
    padding: 0.8rem 2rem;
    background-color: rgba(30, 41, 59, 0.8);
    color: var(--text-color);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.education-filters .filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.education-filters .filter-btn:hover {
    background-color: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.education-filters .filter-btn:hover::before {
    left: 100%;
}

.education-filters .filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Eğitim Programları Grid */
.education-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.program-card {
    background: var(--card-bg);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

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

.program-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.program-badge:not(.certification) {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.program-badge.certification {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(245, 158, 11, 0.3);
    }
    to {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
    }
}

.program-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 64, 175, 0.2));
    position: relative;
    overflow: hidden;
}

.program-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.program-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.program-card:hover .program-icon i {
    transform: scale(1.1) rotateY(180deg);
    background: rgba(59, 130, 246, 0.2);
}

.program-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.program-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.program-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 1rem;
}

.program-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.topic {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.program-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
}

.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1.2rem;
}

.enroll-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enroll-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.enroll-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.enroll-btn:hover::before {
    left: 100%;
}

/* Eğitmen Kadrosu */
.instructors-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.instructor-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.instructor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    opacity: 0.03;
    z-index: 0;
}

.instructor-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.instructor-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instructor-card:hover .instructor-image img {
    transform: scale(1.1);
}

.instructor-info {
    position: relative;
    z-index: 1;
}

.instructor-info h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.instructor-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.instructor-bio {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.instructor-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

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

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

/* Öğrenci Yorumları */
.testimonials-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    opacity: 0.02;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-stars i {
    color: #f59e0b;
    font-size: 1.2rem;
}

.testimonial-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.testimonial-author div strong {
    color: var(--text-color);
    display: block;
    font-weight: 600;
}

.testimonial-author div span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA Bölümü */
.education-cta {
    background: var(--card-bg);
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.education-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-btn.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .education-hero {
        height: 450px;
    }

    .education-hero-content {
        padding: 0 1.5rem !important;
    }

    .education-hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem !important;
    }

    .education-hero-content p {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-top: 1rem !important;
        display: flex !important;
    }

    .stat {
        min-width: 200px;
        width: 100%;
        max-width: 250px;
    }

    .education-programs {
        grid-template-columns: 1fr;
    }

    .program-features {
        flex-direction: column;
        gap: 0.8rem;
    }

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

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .education-hero {
        height: 450px;
        min-height: 450px !important;
    }

    .education-hero-content {
        padding: 0 1rem !important;
    }

    .education-hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem !important;
    }

    .education-hero-content p {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        margin-top: 1rem !important;
        padding: 0 1rem;
        display: flex !important;
        visibility: visible !important;
    }

    .stat {
        min-width: 150px;
        width: 100%;
        max-width: 200px;
        padding: 0.75rem 0.5rem !important;
    }

    .stat-number {
        font-size: 1.75rem !important;
        margin-bottom: 0.25rem !important;
    }

    .stat-label {
        font-size: 0.85rem !important;
    }

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

    .education-filters {
        flex-direction: column;
        align-items: center;
    }

    .education-filters .filter-btn {
        width: 200px;
    }

    .program-card {
        margin: 0 1rem;
    }

    .program-content {
        padding: 1.5rem;
    }

    .instructor-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .education-cta {
        padding: 2.5rem 1.5rem;
    }
}

/* İletişim Sayfası Stilleri */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1556075798-4825dfaaf498?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=100');
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 2rem;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.hero-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Hızlı İletişim Kartları */
.quick-contact-section {
    margin-bottom: 5rem;
}

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

.contact-card {
    background: var(--card-bg);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
}

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

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

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotateY(180deg);
}

.contact-card h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info a {
    display: block;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.contact-info span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.8rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-btn.whatsapp:hover {
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* İletişim Ana Bölümü */
.contact-main-section {
    margin-bottom: 5rem;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-section {
    background: var(--card-bg);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1556075798-4825dfaaf498?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    opacity: 0.03;
    z-index: 0;
}

.contact-form-section h2 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.contact-form-section > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.contact-form {
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.8rem;
    background: rgba(30, 41, 59, 0.5);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    background: rgba(30, 41, 59, 0.7);
}

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

.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 0.4rem;
    border: 2px solid rgba(59, 130, 246, 0.3);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    margin: 0;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label .checkmark::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::before {
    opacity: 1;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-contact-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.submit-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.submit-contact-btn:hover::before {
    left: 100%;
}

/* İletişim Bilgileri Bölümü */
.contact-info-section {
    background: var(--card-bg);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(59, 130, 246, 0.1);
    height: fit-content;
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1556075798-4825dfaaf498?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    opacity: 0.03;
    z-index: 0;
}

.contact-info-section h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.info-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.social-contact {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.social-contact h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-contact .social-links {
    display: flex;
    gap: 1rem;
}

.social-contact .social-links a {
    color: var(--text-color);
    background: rgba(59, 130, 246, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

/* Harita Bölümü */
.map-section {
    margin-bottom: 5rem;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    background: var(--card-bg);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.map-placeholder {
    position: relative;
    min-height: 400px;
}

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

.map-info {
    padding: 2rem;
    background: var(--card-bg);
}

.map-info h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.transport-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.transport-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

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

.transport-item strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.transport-item p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Sık Sorulan Sorular */
.faq-section {
    margin-bottom: 5rem;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.05);
}

.faq-question h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 990px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .map-placeholder {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 400px;
    }

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

    .hero-contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;
    }

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

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

    .contact-form-section {
        padding: 2rem;
    }

    .contact-info-section {
        padding: 2rem;
    }

    .info-item {
        flex-direction: column;
        gap: 1rem;
    }

    .transport-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 350px;
    }

    .contact-hero-content h1 {
        font-size: 2rem;
    }

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

    .contact-card {
        padding: 1.5rem;
    }

    .contact-form-section {
        padding: 1.5rem;
    }

    .contact-info-section {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1rem;
    }
}

/* Privacy Policy Styles */
.privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.privacy-intro {
    margin-bottom: 3rem;
}

.privacy-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-section h2 i {
    font-size: 1.2rem;
}

.contact-info {
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    margin-top: 1rem;
}

.data-categories {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.data-categories li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-categories li:last-child {
    border-bottom: none;
}

.data-categories li i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.important-note {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.important-note i {
    color: #f59e0b;
    font-size: 1.2rem;
}

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

.purpose-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.purpose-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.purpose-item i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.purpose-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.legal-basis {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.basis-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.basis-code {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}

.collection-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.method-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.method-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.transfer-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.transfer-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transfer-info ul {
    list-style: none;
    padding: 0;
}

.transfer-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.transfer-info li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.transfer-info li:last-child {
    border-bottom: none;
}

.retention-periods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.retention-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.retention-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    min-width: 24px;
}

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

.retention-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.measure-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.measure-category h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.measure-category ul {
    list-style: none;
    padding: 0;
}

.measure-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.measure-category li:before {
    content: "✓";
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.measure-category li:last-child {
    border-bottom: none;
}

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

.right-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.right-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.right-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    min-width: 20px;
}

.application-methods {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.application-methods h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.application-methods ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.application-methods li {
    padding: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
}

.response-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    min-width: 20px;
}

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

.cookie-type {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-type i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cookie-type h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-type p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.update-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.update-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.update-info p:last-child {
    margin-bottom: 0;
}

.update-info i {
    color: var(--primary-color);
    width: 20px;
}

.contact-section {
    margin-top: 3rem;
}

.contact-details {
    margin-top: 1rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.contact-details i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

/* Privacy Policy Responsive Design */
@media (max-width: 768px) {
    .privacy-card {
        padding: 1.5rem;
    }
    
    .purposes-grid {
        grid-template-columns: 1fr;
    }
    
    .security-measures {
        grid-template-columns: 1fr;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-info {
        grid-template-columns: 1fr;
    }
    
    .collection-methods {
        grid-template-columns: 1fr;
    }
    
    .response-info {
        grid-template-columns: 1fr;
    }
    
    .application-methods ul {
        grid-template-columns: 1fr;
    }
    
    .basis-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .retention-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .privacy-card {
        padding: 1rem;
    }
    
    .privacy-section h2 {
        font-size: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .purpose-item {
        padding: 1rem;
    }
    
    .measure-category {
        padding: 1rem;
    }
}

/* Cookie Policy Specific Styles */
.cookie-table-container {
    margin: 2rem 0;
    text-align: center;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.cookie-table-image {
    width: 95%;
    max-width: 1200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.cookie-table-image:hover {
    transform: scale(1.02);
    cursor: zoom-in;
}

.table-caption {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.table-caption i {
    color: var(--primary-color);
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.category-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.category-card.essential {
    border-left-color: #ef4444;
}

.category-card.functional {
    border-left-color: #f59e0b;
}

.category-card.analytics {
    border-left-color: #10b981;
}

.category-card.marketing {
    border-left-color: #8b5cf6;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.category-header h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category-badge.required {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.category-badge.optional {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}

.category-card ul {
    list-style: none;
    padding: 0;
}

.category-card li {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.category-card li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.consent-note {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    border-left: 3px solid #8b5cf6;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.consent-note i {
    color: #8b5cf6;
}

/* Enhanced Cookie Info Section Styles */
.intro-text {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
    font-weight: 400;
}

.cookie-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.cookie-info-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.cookie-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.type-card {
    border-top: 4px solid #10b981;
}

.duration-card {
    border-top: 4px solid #f59e0b;
}

.card-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-icon {
    background: var(--primary-color);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.type-card .card-icon {
    background: #10b981;
}

.duration-card .card-icon {
    background: #f59e0b;
}

.card-header h4 {
    color: var(--text-color);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.card-content {
    padding: 1.5rem;
}

.definition-item {
    margin-bottom: 1.5rem;
}

.definition-item:last-child {
    margin-bottom: 0;
}

.term {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.term:before {
    content: "▶";
    font-size: 0.8rem;
    color: var(--primary-color);
}

.description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    padding-left: 1rem;
}

/* Enhanced Legal Section Styles */
.legal-framework {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #ef4444;
}

.framework-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.framework-header i {
    color: #ef4444;
    font-size: 1.5rem;
    margin-top: 0.3rem;
}

.framework-content h4 {
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.framework-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.legal-categories {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.legal-category {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.legal-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.optional-cookies {
    border-left: 4px solid #8b5cf6;
}

.essential-cookies {
    border-left: 4px solid #10b981;
}

.category-icon {
    background: var(--primary-color);
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.optional-cookies .category-icon {
    background: #8b5cf6;
}

.essential-cookies .category-icon {
    background: #10b981;
}

.category-content {
    flex: 1;
}

.category-content h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.legal-reference {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.optional-cookies .legal-reference {
    background: rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
}

.essential-cookies .legal-reference {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.category-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.highlight {
    background: linear-gradient(120deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.3) 100%);
    color: #93c5fd;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-weight: 600;
}

.legal-basis-list {
    display: grid;
    gap: 0.75rem;
}

.basis-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid #10b981;
}

.basis-item i {
    color: #10b981;
    font-size: 1rem;
}

.basis-item span {
    color: var(--text-color);
    font-weight: 500;
}

.reference-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-left: 4px solid #10b981;
}

.reference-box i {
    color: #10b981;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.reference-content {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Enhanced KVKK Styles */
.company-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.company-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.company-header h3 {
    color: var(--text-color);
    margin: 0;
    font-size: 1.3rem;
}

.company-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.company-details {
    display: grid;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

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

.detail-item strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 0.25rem;
}

.detail-item p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.enlightenment-info {
    text-align: center;
}

.enlightenment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.enlightenment-item {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.enlightenment-item:hover {
    transform: translateY(-2px);
}

.enlightenment-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.enlightenment-item span {
    color: var(--text-color);
    font-weight: 500;
    text-align: center;
    font-size: 0.9rem;
}

.purposes-overview {
    text-align: center;
}

.purpose-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.purpose-tag {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.purpose-tag:hover {
    transform: scale(1.05);
}

.purpose-tag.primary {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}

.purpose-tag.security {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.purpose-tag.customer {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.purpose-tag.finance {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.purpose-tag.legal {
    background: rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
}

.purpose-tag.marketing {
    background: rgba(236, 72, 153, 0.2);
    color: #f9a8d4;
}

.purpose-tag.analytics {
    background: rgba(6, 182, 212, 0.2);
    color: #67e8f9;
}

.data-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.data-category {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.data-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.category-header i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.category-header h4 {
    color: var(--text-color);
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.data-category p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.special-data-notice {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.special-data-notice i {
    color: #ef4444;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.special-data-notice h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.special-data-notice p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.legal-basis-enhanced {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.basis-item-enhanced {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.basis-item-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.basis-item-enhanced.contract {
    border-left: 4px solid #10b981;
}

.basis-item-enhanced.legal {
    border-left: 4px solid #8b5cf6;
}

.basis-item-enhanced.interest {
    border-left: 4px solid #f59e0b;
}

.basis-item-enhanced.consent {
    border-left: 4px solid #ef4444;
}

.basis-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.basis-header .basis-code {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.basis-item-enhanced.contract .basis-code {
    background: #10b981;
}

.basis-item-enhanced.legal .basis-code {
    background: #8b5cf6;
}

.basis-item-enhanced.interest .basis-code {
    background: #f59e0b;
}

.basis-item-enhanced.consent .basis-code {
    background: #ef4444;
}

.basis-header h4 {
    color: var(--text-color);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.basis-item-enhanced p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Responsive adjustments for new KVKK styles */
@media (max-width: 768px) {
    .company-header {
        flex-direction: column;
        text-align: center;
    }
    
    .enlightenment-grid {
        grid-template-columns: 1fr;
    }
    
    .purpose-tags {
        justify-content: flex-start;
    }
    
    .data-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .special-data-notice {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

.cookie-details {
    margin: 2rem 0;
}

.cookie-item {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cookie-header h5 {
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.cookie-type {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.essential-type {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.analytics-type {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.marketing-type {
    background: rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
}

.cookie-info p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.consent-info-panel {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.consent-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step-icon {
    background: var(--primary-color);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step-text h5 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.step-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.flow-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.consent-note-box {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.consent-note-box i {
    color: #ef4444;
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.management-features {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.browser-instructions {
    margin: 2rem 0;
}

.browser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.browser-item {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.browser-item:hover {
    transform: translateY(-2px);
}

.browser-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.browser-item h5 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.browser-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.transfer-notice {
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid var(--primary-color);
}

.transfer-notice i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.transfer-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.transfer-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.transfer-item h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transfer-item i {
    color: var(--primary-color);
}

.provider-list {
    margin-top: 1rem;
}

.provider-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    margin: 0.5rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.provider-item h5 {
    color: var(--text-color);
    margin: 0;
}

.provider-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.provider-item .location {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.rights-info {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #10b981;
}

.rights-info h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rights-info i {
    color: #10b981;
}

.rights-info ul {
    list-style: none;
    padding: 0;
}

.rights-info li {
    margin: 0.5rem 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

.rights-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.update-policy {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #f59e0b;
}

.update-policy h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.update-policy i {
    color: #f59e0b;
}

.update-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.change-notification {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(59, 130, 246, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
}

.change-notification i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.change-notification h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.update-notice {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.update-notice i {
    color: #ef4444;
    font-size: 1.2rem;
}

.table-notice {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.table-notice i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* Responsive adjustments for cookie policy */
@media (max-width: 768px) {
    .cookie-categories {
        grid-template-columns: 1fr;
    }
    
    .cookie-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .legal-category {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .framework-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .reference-box {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .consent-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .browser-grid {
        grid-template-columns: 1fr;
    }
    
    .transfer-details {
        grid-template-columns: 1fr;
    }
    
    .update-process {
        grid-template-columns: 1fr;
    }
    
    .provider-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* İçindekiler (Table of Contents) Stilleri */
.table-of-contents {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(16, 185, 129, 0.08));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.table-of-contents::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #10b981);
    border-radius: 16px 16px 0 0;
}

.table-of-contents h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.table-of-contents h3 i {
    color: var(--primary-color);
    font-size: 1.3rem;
    background: rgba(59, 130, 246, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 0.8rem;
    position: relative;
}

.table-of-contents li:last-child {
    margin-bottom: 0;
}

.table-of-contents a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.table-of-contents a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.table-of-contents a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.table-of-contents a:hover {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.table-of-contents a:hover::before {
    transform: scaleY(1);
}

.table-of-contents a:hover::after {
    opacity: 1;
}

.table-of-contents a.active {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.table-of-contents a.active::before {
    transform: scaleY(1);
}

.table-of-contents a.active::after {
    opacity: 1;
}

/* İçindekiler numaralandırması için özel stiller */
.table-of-contents a span {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.table-of-contents a:hover span {
    background: var(--primary-color);
    color: white;
}

.table-of-contents a.active span {
    background: var(--primary-color);
    color: white;
}

/* Responsive tasarım için mobil uyumluluk */
@media (max-width: 768px) {
    .table-of-contents {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .table-of-contents h3 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .table-of-contents a {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    .table-of-contents a:hover {
        transform: translateX(4px);
    }
}

@media (max-width: 480px) {
    .table-of-contents {
        padding: 1rem;
    }
    
    .table-of-contents h3 {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .table-of-contents a {
        padding: 0.7rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
}