/* Genel Stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

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

/* Kahraman Alanı */
/* Kahraman Alanı */
.hero {
    background: url('alin-meceanu-u2hhPcpmADQ-unsplash.jpg') no-repeat center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    padding: 20px;
}


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

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

.cta-buttons .btn {
    padding: 12px 25px;
    margin: 0 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn.primary {
    background-color: #0077B6;
    color: #FFFFFF;
}

.btn.secondary {
    background-color: #CAF0F8;
    color: #0077B6;
}

/* Bölüm Genel Stil */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    color: #0077B6;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* Hakkımızda */
.about-content {
    display: flex;
    justify-content: left;
    align-items: left;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.about-content .text {
    max-width: 600px;
}

.about-content img {
    border-radius: 10px;
}

/* Hizmetlerimiz */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-card img {
    margin-bottom: 15px;
}

.service-card h3 {
    color: #0077B6;
    margin-bottom: 10px;
}

/* Öne Çıkan Yatlar */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.fleet-card {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.fleet-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.fleet-card h3 {
    color: #0077B6;
    margin-bottom: 10px;
}

/* Sıkça Sorulan Sorular */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    color: #0077B6;
    margin-bottom: 10px;
}

/* Müşteri Yorumları */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-card span {
    display: block;
    margin-top: 10px;
    color: #0077B6;
    font-weight: bold;
}

/* Bize Ulaşın */
.contact-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #0077B6;
    text-decoration: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #CAF0F8;
    border-radius: 5px;
}

.contact-form textarea {
    height: 100px;
}

/* Footer */
.footer {
    background-color: #0077B6;
    color: #FFFFFF;
    text-align: center;
    padding: 20px;
}

.footer a {
    color: #CAF0F8;
    text-decoration: none;
    margin: 0 5px;
}

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

    .about-content, .contact-content {
        flex-direction: column;
        text-align: center;
    }
}