:root {
    --primary-red: #FF0000;
    --primary-black: #000000;
    --text-white: #FFFFFF;
    --text-gray: #333333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 80px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-switch {
    display: flex;
    gap: 0.5rem;
}

.language-switch button {
    background: none;
    border: 1px solid #ddd;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.language-switch button.active {
    background-color: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

/* Mobil menü butonu - Basit ve güvenilir */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 3px;
    left: 0;
}

.mobile-menu-btn span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 10px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 20px;
}

/* Mobil düzenlemeler */
@media screen and (max-width: 992px) {
    .navbar {
        height: 60px;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo img {
        height: 30px;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: 0;
        flex-direction: column;
        background-color: white;
        overflow: hidden;
        transition: height 0.3s ease;
        z-index: 999;
        gap: 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        height: auto;
        padding: 1rem 0;
    }
    
    .nav-links a {
        padding: 1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .language-switch button {
        padding: 0.3rem 0.6rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    .navbar {
        height: 50px;
    }
    
    .nav-container {
        padding: 0 0.8rem;
    }
    
    .logo img {
        height: 25px;
    }
    
    .nav-links {
        top: 50px;
    }
    
    .language-switch button {
        padding: 0.2rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .mobile-menu-btn {
        width: 25px;
        height: 20px;
    }
    
    .mobile-menu-btn span {
        height: 2px;
    }
    
    .mobile-menu-btn span:nth-child(2) {
        top: 9px;
    }
    
    .mobile-menu-btn span:nth-child(3) {
        top: 18px;
    }
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('hero-bg.jpg') center/cover;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-red);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: darkred;
}

/* Genel Section Stilleri */
.section {
    padding: 5rem 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-black);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-box {
    background-color: var(--primary-black);
    color: var(--text-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Philosophy Section */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
}

.principle-card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Sectors Section */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    width: 100%;
    overflow-x: hidden;
}

.sector-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.sector-card:hover {
    transform: translateY(-5px);
}

.sector-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    text-align: center;
}

.sector-card h3 {
    color: var(--primary-black);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sector-details {
    width: 100%;
    text-align: left;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.sector-details p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    text-align: left;
}

.sector-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    padding-left: 1.5rem;
}

.sector-card ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.sector-card ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-red);
    border-radius: 50%;
}

/* Sektör açıklama metinleri için özel stil */
.sector-description {
    text-align: left !important;
    text-justify: none !important;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Footer */
.footer {
    background-color: var(--text-white);
    padding: 4rem 0 2rem;
    border-top: 1px solid #eee;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 35px;
    width: auto;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.footer-newsletter {
    max-width: 500px;
}

.footer-newsletter h4,
.footer-social h4 {
    color: var(--primary-black);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-newsletter p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--primary-red);
    background-color: white;
    outline: none;
}

.newsletter-button {
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-red);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.newsletter-button:hover {
    background-color: darkred;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-gray);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-red);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Footer Responsive */
@media screen and (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-newsletter {
        max-width: 100%;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .social-links {
        justify-content: center;
    }
}

/* Products Section */
.products {
    background-color: #f9f9f9;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    max-width: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    max-width: 100%;
    height: auto;
}

.product-card h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.details-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-red);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    text-align: center;
    width: auto;
    min-width: 150px;
}

.details-button:hover {
    background-color: darkred;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    height: 200px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.portfolio-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: var(--primary-red);
    color: var(--text-white);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.blog-content h3 {
    color: var(--primary-black);
    margin-bottom: 0.8rem;
}

.read-more {
    display: inline-block;
    color: var(--primary-red);
    text-decoration: none;
    margin-top: 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: darkred;
}

/* Responsive düzenlemeler */
@media screen and (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        margin-top: 60px;
        height: calc(100vh - 60px);
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 576px) {
    .navbar {
        height: 50px;
    }
    
    .nav-container {
        height: 50px;
        padding: 0 0.8rem;
    }
    
    .logo img {
        height: 25px;
    }
    
    .language-switch button {
        padding: 0.2rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .mobile-menu-btn {
        width: 25px;
        height: 25px;
    }
    
    .mobile-menu-btn span {
        height: 2px;
        margin: 4px 0;
    }
    
    .hero {
        margin-top: 50px;
        height: calc(100vh - 50px);
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .principle-card,
    .sector-card {
        padding: 1rem;
    }
    
    .sector-icon {
        font-size: 2.5rem;
    }
    
    .sector-card h3 {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
    }
    
    .submit-button {
        padding: 0.8rem;
    }
    
    .sector-card ul li {
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact {
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.info-item:hover {
    background-color: #f8f9fa;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-right: 1.5rem;
    width: 24px;
}

.info-item h4 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 500;
}

.info-item .contact-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.info-item .contact-link:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

/* WhatsApp link özel stili */
.info-item:nth-child(2) .contact-link:hover {
    color: #25D366;
}

/* Info item hover efektini güncelleme */
.info-item:hover .contact-link {
    color: var(--primary-red);
}

.info-item:nth-child(2):hover .contact-link {
    color: #25D366;
}

.contact-form {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 0.5rem;
}

.form-group textarea + label {
    top: 1rem;
    transform: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-red);
    outline: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%) scale(0.9);
    color: var(--primary-red);
}

.submit-button {
    background-color: var(--primary-red);
    color: var(--text-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: darkred;
}

/* Contact Responsive */
@media screen and (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobil menü düzeltmesi - Temel yaklaşım */
.mobile-menu-btn {
    display: none;
}

@media screen and (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        box-sizing: border-box;
    }
    
    .mobile-menu-btn span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #000;
        border-radius: 3px;
    }
}

/* Mobil menü açık durumu */
body.menu-open {
    overflow: hidden;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Biz Kimiz bölümü için düzenlemeler */
.about-text-container {
    width: 100%;
    margin-bottom: 2rem;
    max-width: 100%;
}

.about-text-container p {
    width: 100%;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Misyon ve Vizyon kutuları için yeni stiller */
.mission-vision-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.mission-vision-box {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

.mission-vision-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    color: white;
}

.mission-vision-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    color: white;
}

/* Responsive düzenlemeler */
@media screen and (max-width: 992px) {
    .mission-vision-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-vision-box {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .mission-vision-box h3 {
        font-size: 1.5rem;
    }
    
    .mission-vision-box p {
        font-size: 1rem;
    }
    
    .about-text-container p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .mission-vision-box {
        padding: 1.2rem;
    }
    
    .mission-vision-box h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .mission-vision-box p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .about-text-container p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}

/* Vizyonumuz Bölümü */
.vision-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.vision-image {
    width: 40%;
}

.vision-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vision-text {
    width: 60%;
}

.vision-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.vision-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Hizmetlerimiz 4'lü grid düzenlemesi */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Responsive düzenlemeler */
@media screen and (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .vision-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .vision-image, .vision-text {
        width: 100%;
    }
    
    .vision-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .vision-text h3 {
        text-align: center;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .vision-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Vizyonumuz kutusu */
.vision-box {
    position: relative;
    width: 80%;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 2rem auto;
}

.vision-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.vision-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

/* Mobil görünüm için düzenlemeler */
@media screen and (max-width: 992px) {
    .vision-box {
        width: 100%;
        padding: 1.5rem;
        margin: 2rem auto;
    }
    
    .vision-box h3 {
        font-size: 1.5rem;
    }
    
    .vision-box p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .vision-box {
        padding: 1.2rem;
        margin: 1.5rem auto;
    }
    
    .vision-box h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .vision-box p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Misyon ve Vizyon kutularını yan yana göstermek için */
.mission-vision-container {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
}

.mission-box, .vision-box {
    flex: 1;
    position: relative;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mission-box h3, .vision-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.mission-box p, .vision-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

/* Mobil görünüm için düzenlemeler */
@media screen and (max-width: 992px) {
    .mission-vision-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mission-box, .vision-box {
        width: 100%;
        padding: 1.5rem;
    }
    
    .mission-box h3, .vision-box h3 {
        font-size: 1.5rem;
    }
    
    .mission-box p, .vision-box p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .mission-box, .vision-box {
        padding: 1.2rem;
    }
    
    .mission-box h3, .vision-box h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .mission-box p, .vision-box p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
} 