:root {
    --primary: #2A2A2A;
    --secondary: #FF4D4D;
    --accent-color: #FF4D4D;
    --dark: #121212;
    --dark-bg: #121212;
    --light: #FFFFFF;
    --gray: #F5F5F8;
    --text-dark: #1A1A2E;
    --text-light: #8D99AE;
    --bg-light: #F8F9FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    line-height: 1.2;
}

.display-text {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    letter-spacing: -1px;
}

.large-text {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
}

.medium-text {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.3;
}

.accent-text {
    color: var(--secondary);
}

.text-center {
    text-align: center;
}

/* Header */
header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background-color: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* İletişim Sayfası Stilleri */
.contact-hero {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80') repeat;
    opacity: 0.1;
}

.contact-hero .hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--light);
}

.hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--gray) 25%, transparent 25%) -50px 0,
                linear-gradient(-45deg, var(--gray) 25%, transparent 25%) -50px 0;
    background-size: 100px 100px;
    opacity: 0.4;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-form-wrapper {
    background-color: var(--light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.contact-form-wrapper:hover {
    transform: translateY(-5px);
}

.section-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-description {
    color: var(--text-light);
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.8rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.1);
}

.cta-button {
    background: linear-gradient(135deg, var(--secondary) 0%, #FF8080 100%);
    color: var(--light);
    padding: 1.2rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 10px 20px rgba(255, 77, 77, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 77, 77, 0.3);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.contact-info-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    background: linear-gradient(135deg, var(--secondary) 0%, #FF8080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.contact-info-card p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-info-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.1rem;
}

.contact-info-card a:hover {
    color: var(--secondary);
}

.social-media {
    margin-top: auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 3rem 0;
    width: 100%;
}

.social-media h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--secondary);
    color: var(--light);
    transform: translateY(-5px);
}

.map-section {
    padding: 0 0 0;
    margin-bottom: -5px;
}

.map-wrapper {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-info-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .social-media {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 10rem 0 4rem;
    }

    .contact-info-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Navigasyon */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 2.5rem;
    font-family: 'DM Serif Display', serif;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    overflow: visible;
    justify-content: flex-start;
    margin-left: 3rem;
    margin-right: auto;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.dropdown > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: all 0.3s;
    transform: rotate(0deg);
}

.dropdown:hover > a {
    color: var(--primary);
}

.dropdown:hover > a::after {
    width: 100%;
    transform: rotate(360deg);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    transform: translateY(20px);
    background-color: var(--light);
    min-width: 280px;
    padding: 0.8rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 100;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.2s;
}

.dropdown-item .emoji {
    width: 32px;
    height: 32px;
    font-size: 1.3rem;
    margin-right: 12px;
    background-color: rgba(255, 77, 77, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.02);
    color: var(--primary);
}

@media (max-width: 992px) {
    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding-left: 1rem;
    }

    .dropdown.active .dropdown-content {
        display: flex;
        flex-direction: column;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    transition: opacity 0.3s;
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--light);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem;
        transition: right 0.3s;
        z-index: 95;
    }

    .nav-links.active {
        right: 0;
    }

    .overlay.active {
        display: block;
        opacity: 1;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0.5rem 0 0.5rem 1rem;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown > a::after {
        margin-left: auto;
    }
}

/* Footer Stilleri */
.footer {
    background-color: var(--primary);
    color: var(--light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-info {
    max-width: 400px;
}

.footer-info .logo {
    color: var(--light);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-info .logo-dot {
    color: var(--secondary);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-title {
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: var(--secondary);
}

.contact-icon {
    font-size: 1.2rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-menu a:hover {
    color: var(--secondary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-info {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
}

/* Hizmet Sayfaları Stilleri */
.service-hero {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1603366615917-1fa6dad5c4fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80') repeat;
    opacity: 0.1;
}

.service-intro {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.content-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.content-image:hover img {
    transform: scale(1.05);
}

.content-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.service-details {
    padding: 5rem 0;
    background-color: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.stats-section {
    padding: 5rem 0;
    background-color: var(--primary);
    color: var(--light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-family: 'DM Serif Display', serif;
}

.stat-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.process-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background-color: var(--light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

.process-step h3 {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.3rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--light);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    margin-bottom: 1.5rem;
    color: var(--light);
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    max-width: 250px;
}

.faq-section {
    padding: 5rem 0;
    background-color: var(--light);
}

.faq-wrapper {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
    color: var(--primary);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.benefits-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.benefit-content h3 {
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-size: 1.2rem;
}

.benefit-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Styles for Service Pages */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 10rem 0 4rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Blog Sayfası Stilleri */
.blog-section {
    padding: 5rem 0;
    background-color: var(--light);
}

.blog-section .blog-grid {
    margin-top: 0;
}

.blog-section .blog-card {
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-section .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-section .blog-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-section .blog-excerpt {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.blog-section .blog-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-section .blog-link:hover {
    color: var(--secondary);
}

.blog-section .blog-link::after {
    content: "→";
    margin-left: 0.5rem;
    transition: margin-left 0.3s;
}

.blog-section .blog-link:hover::after {
    margin-left: 0.8rem;
}

@media (max-width: 992px) {
    .blog-section .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-section .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-section {
        padding: 3rem 0;
    }
}

/* Çerez Bildirimi Stilleri */
.cookie-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notification.active {
    transform: translateY(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.notification-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .cookie-notification {
        bottom: 10px;
        right: 10px;
        left: 10px;
        text-align: center;
    }

    .notification-content {
        justify-content: center;
    }
}

/* KVKK Checkbox Stili */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Legal Sayfalar Stili */
.legal-hero {
    background: var(--dark);
    padding: 12rem 0 6rem;
    position: relative;
    overflow: hidden;
    color: var(--light);
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80') repeat;
    opacity: 0.1;
}

.legal-content {
    padding: 4rem 0;
    background: var(--bg-light);
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    background: var(--light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-text h2 {
    color: var(--accent-color);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.legal-text h3 {
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
    color: var(--primary);
}

.legal-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.legal-text ul {
    margin: 1rem 0 2rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-text a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-text a:hover {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 10rem 0 4rem;
    }
    
    .legal-text {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .legal-text h2 {
        font-size: 1.6rem;
    }
    
    .legal-text h3 {
        font-size: 1.3rem;
    }
} 