/* Genel Ayarlar */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #fce4f0; /* pastel pembe */
    padding: 100px 20px 80px 20px;
    text-align: center;
    border-bottom: 1px solid #f2c4dd;
}

.logo {
    max-width: 200px; /* Logo boyutu */
    height: auto;
    margin-bottom: 20px;
}

header p {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    padding: 16px 45px;
    background-color: #d63384;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.cta-btn:hover {
    background-color: #b02d70;
    transform: translateY(-3px);
}

/* Hizmetler Bölümü */
.services {
    padding: 80px 20px;
    text-align: center;
}

.services h2 {
    font-size: 38px;
    font-weight: 700;
    color: #d63384;
    margin-bottom: 20px;
}

.services p {
    font-size: 18px;
    color: #555;
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #f2c4dd;
    border-radius: 12px;
    padding: 30px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #d63384;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #555;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Marka Hikayesi */
.about {
    background-color: #fff0f6;
    padding: 80px 20px;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    font-weight: 700;
    color: #d63384;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

/* Footer */
footer {
    background-color: #d63384;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

footer a {
    color: #fff;
    font-weight: 600;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffe6f0;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        max-width: 150px;
    }
    .services h2, .about h2 {
        font-size: 28px;
    }
    .cta-btn {
        font-size: 15px;
        padding: 14px 35px;
    }
}
