/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

/* Logo Styles */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo h1 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.logo p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #c0392b;
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #c0392b;
}

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

.main-nav a.active {
    color: #c0392b;
}

.main-nav a.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header-content {
        padding: 0.8rem 1.5rem;
    }

    .hamburger-menu {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        padding: 80px 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        z-index: 999;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin: 0;
        padding: 0;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav a {
        display: block;
        font-size: 1.1rem;
        padding: 0.8rem 0;
        border-bottom: 1px solid #eee;
        color: #333;
        text-decoration: none;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .main-nav a::after {
        display: none;
    }

    /* Hamburger Animation */
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Overlay */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        backdrop-filter: blur(3px);
        z-index: 998;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        display: block;
    }

    /* Guide Navigation (Desktop) */
    .guide-nav {
        margin-top: 80px; /* Adjust as needed based on header height */
        position: relative; /* Ensure stacking context if needed later */
        z-index: 900; /* Below fixed header */
        background-color: #f8f8f8; /* Optional: Add background */
        padding: 0.5rem 0; /* Optional: Add padding */
        border-bottom: 1px solid #eee; /* Optional: Add border */
    }

    .guide-nav ul {
        display: flex;
        justify-content: center;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 1.5rem;
    }

    .guide-nav a {
        text-decoration: none;
        color: #555;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        transition: background-color 0.3s, color 0.3s;
        font-weight: 500;
    }

    .guide-nav a:hover,
    .guide-nav a.active {
        background-color: #e0e0e0;
        color: #333;
    }


    /* Guide Navigation Mobile */
    @media (max-width: 768px) {
        .guide-nav {
            /* margin-top: 80px; /* Removed for mobile, handled by header */ */
    }

    .guide-nav ul {
        flex-direction: column;
        padding: 0;
    }

    .guide-nav a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #eee;
        text-align: left;
    }
}

/* Guide Navigation Mobile Styles */
    /* Guide Navigation Mobile Styles */
    /* @media (max-width: 768px) { */ /* This media query seems duplicated, consolidating */
        .guide-nav {
            position: static; /* Ensure it scrolls with the page */
            /* position: fixed; kaldırıldı */
            /* top: 0; kaldırıldı */
            left: 0;
            width: 100%;
            margin-top: 60px; /* Space below fixed header */
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            z-index: 990; /* Below main nav overlay */
        padding: 1rem;
    }

    .guide-nav.active {
        display: block;
    }

    .guide-nav ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    .guide-nav li {
        width: 100%;
    }

    .guide-nav a {
        display: block;
        padding: 12px;
        text-align: left;
        border-radius: 0;
        border-bottom: 1px solid #eee;
        color: #333;
        font-weight: 500;
    }

    .guide-nav a:last-child {
        border-bottom: none;
    }

    .guide-nav a.active,
    .guide-nav a:hover {
        background-color: #c0392b;
        color: white;
    }

    .guide-content {
        /* margin-top: 1rem; /* Removed, margin handled by guide-nav */ */
        padding: 1rem;
        margin-top: 0; /* Reset margin if previously set */
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e67e22;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d35400;
}

/* Katalog Section */
.catalog {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.catalog h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 2.5rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.catalog-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.catalog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.pdf-preview {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.pdf-preview canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pdf-preview p {
    color: #666;
    font-style: italic;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.catalog-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 1rem 0;
    text-align: center;
}

.view-pdf {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #c0392b;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.view-pdf:hover {
    background-color: #a93226;
}

/* Hakkımızda Section */
.about {
    padding: 5rem 5%;
    background-color: white;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about p {
    margin-bottom: 3rem;
    color: #7f8c8d;
    font-size: 1.1rem;
}

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

.feature {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

/* İletişim Section */
.contact {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.contact h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #7f8c8d;
}

.contact-info i {
    margin-right: 10px;
    color: #e67e22;
}

.social-media {
    margin-top: 2rem;
}

.social-media a {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #e67e22;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    padding: 1rem;
    background-color: #e67e22;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #d35400;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 5% 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #e67e22;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e67e22;
}

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

/* Responsive Tasarım */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

    .pdf-preview {
        height: 250px;
    }
}

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

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

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

/* Markalar Section */
.brands {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.brands .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brands h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.brand-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.brand-item img {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
}

.brand-item h3 {
    color: #333;
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-item img {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-item img {
        max-width: 100px;
    }
}

/* WhatsApp Butonu */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.whatsapp-button .tooltip {
    position: absolute;
    right: 70px;
    background-color: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-button:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 2000;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 5% auto;
    width: 90%;
    max-width: 1000px;
    max-height: 85vh;
    border-radius: 10px;
    overflow-y: auto;
    padding: 1rem;
    animation: modalOpen 0.4s ease;
}

@keyframes modalOpen {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
}

.close-modal:hover {
    color: #000;
}

/* Mobil görünümde içerik alanı düzenlemesi */
@media (max-width: 768px) {
    .modal-content {
        margin-top: 80px;
        height: calc(100vh - 80px);
        max-height: none;
    }

    .guide-content section {
        padding-top: 1rem;
    }
}

/* Bakım Rehberi Stilleri */
.guide-nav {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/guide-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
    position: relative;
    z-index: 995;
}

.guide-nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0 1rem;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-nav li {
    flex-shrink: 0;
}

.guide-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: block;
    font-weight: 500;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.2);
}

.guide-nav a.active,
.guide-nav a:hover {
    background-color: #c0392b;
    color: white;
}

.guide-content {
    padding: 2rem 1rem;
    margin-top: 20px;
    position: relative;
    z-index: 990;
    background-color: #fff;
    max-width: 1200px;
    margin: 20px auto 0;
}

.guide-content h1 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
}

.care-section {
    margin-bottom: 3rem;
}

.care-section h2 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.care-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.care-item i {
    font-size: 2.5rem;
    color: #c0392b;
    margin-bottom: 1rem;
}

.care-item h3 {
    margin-bottom: 1rem;
    color: #333;
}

.care-item p {
    color: #666;
    line-height: 1.6;
}

.care-tips {
    list-style: none;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.care-tips li {
    margin-bottom: 1rem;
    color: #666;
    display: flex;
    align-items: center;
}

.care-tips i {
    color: #c0392b;
    margin-right: 1rem;
}

/* Responsive Tasarım - Guide Nav */
@media (max-width: 768px) {
    .guide-nav {
        position: relative;
        top: auto;
        left: 0;
        width: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/guide-bg.jpg');
        background-size: cover;
        background-position: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        margin-top: 60px;
        padding: 0.8rem 0;
        z-index: 1;
    }

    .guide-nav ul {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }

    .guide-nav a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        background-color: rgba(0, 0, 0, 0.4);
    }
}

@media (max-width: 480px) {
    .guide-nav {
        padding: 0.5rem 0;
    }

    .guide-nav ul {
        padding: 0.3rem 0.8rem;
    }

    .guide-nav a {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
}



/* Guide Page Header */
.guide-header {
    margin-top: 60px;
    padding: 2rem 1rem;
    background-color: #f8f9f9;
    text-align: center;
}

.guide-header h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guide-header p {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Guide Page Content */
.guide-section {
    margin-bottom: 3rem;
}

.guide-section h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.guide-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Hakkımızda Sayfası Stilleri */
.about-page {
    padding-top: 80px;
}

.about-hero {
    position: relative;
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.about-hero .hero-content {
    max-width: 800px;
    padding: 0 20px;
}

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

.about-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Story Section */
.story {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.story .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.story h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2.5rem;
}

.story p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

/* Values Section */
.values {
    padding: 80px 0;
    background-color: #fff;
}

.values .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.values h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #333;
    font-size: 2.5rem;
}

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

.value-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: #f9f9f9;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-item i {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 20px;
}

.value-item h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.5rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Numbers Section */
.numbers {
    padding: 80px 0;
    background-color: #4a90e2;
    color: #fff;
}

.numbers .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.number-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.number-item p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Location Section */
.location {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.location .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.location h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 2.5rem;
}

.location p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
}

/* Certificates Section */
.certificates {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.certificates h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

.certificate-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.certificate-item i {
    font-size: 2.5rem;
    color: #c0392b;
    margin-bottom: 1rem;
}

.certificate-item h3 {
    margin-bottom: 1rem;
    color: #333;
}

.certificate-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .story h2,
    .values h2,
    .location h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .numbers-grid {
        grid-template-columns: 1fr;
    }
}

/* SSS Sayfası Stilleri */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #333;
    margin-bottom: 1rem;
}

.faq-item h3 i {
    color: #c0392b;
    font-size: 1.5rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
} 
} 
