* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f3f4f6;
    color: #1e1e1e;
    line-height: 1.6;
}


section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 25px;
    background-color: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.section-img {
    display: block;
    margin: 0 auto 20px auto;
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
}

section img {
    display: block;
    margin: 0 auto 20px auto;
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
}

h2 {
    color: #3C3B6E; /* Mavi */
    margin-bottom: 20px;
    font-size: 1.9rem;
}


.whatsapp-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
}

.whatsapp-div p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 500;
    color: #333;
}

.whatsapp-div a img, #whatsapp-link img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.whatsapp-div a img:hover, #whatsapp-link img:hover {
    transform: scale(1.1);
}


.paragraf p {
    margin-bottom: 18px;
    font-size: 1rem;
    color: #444;
}

.paragraf ul {
    list-style: none;
    padding-left: 0;
    margin: 18px 0;
}

.paragraf ul li {
    padding: 10px 0;
    position: relative;
    padding-left: 28px;
    font-weight: 500;
}

.paragraf ul li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
    color: #3C3B6E; /* Mavi tik */
}


.sss-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sss {
    background-color: #3C3B6E;
    color: #fff; /* Mavi başlık */
    padding: 14px 22px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 8px;
    border-left: 5px solid #B22234; /* Kırmızı şerit */
}

.sss:hover {
    background-color: #3C3B6E;
    color: #fff;
}

.scs {
    max-height: 0;
    padding: 0 22px;
    overflow: hidden;
    background-color: #f0f5ff;
    color: #333;
    transition: all 0.35s ease;
}

.sss-item.active .scs {
    max-height: 500px;
    padding: 14px 22px;
}


.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #B22234; /* Kırmızı şerit */
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.quote {
    font-size: 1rem;
    font-weight: 600;
    color: #3C3B6E; /* Mavi */
    margin-bottom: 10px;
}

.author {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1e1e1e;
}

.feedback {
    font-size: 0.9rem;
    color: #555;
}


section:last-of-type {
    text-align: center;
}

section:last-of-type img {
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:last-of-type img:hover {
    transform: scale(1.1);
}

section:last-of-type p {
    margin-bottom: 12px;
    font-size: 1.15rem;
}




/* Responsive Tasarım Kısmı*/

@media (max-width: 768px) {
    h2 {
        font-size: 1.5rem;
    }

    .paragraf p {
        font-size: 0.95rem;
    }

    .testimonial-card {
        padding: 18px;
    }
}












