/* Genel Ayarlar */

body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #42e11b;
    color: #333;
}

/* Header */
/* Header kısmı */
.header .logo img {
    height: 10rem;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
    
    .header {
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 7%;
        margin: 2rem 7%;
        border-radius: 20rem;
        box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.75);
    }
.header .navbar a {
    margin: 0 1rem;
    font-size: 1rem;
    color:  black;
    margin-left: center;
    margin-right: center;
    text-decoration: none; 
    border-bottom: 0.1rem solid transparent;
}

.header .navbar a:hover {
    border-color: var(--main-color);
    padding-bottom: 0.2rem;
}

.header .Buttons button {
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 3rem;
    background-color: transparent;
}

/* Ana İçerik */
.stories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.story {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: calc(100% - 40px);
    max-width: 500px;
    box-sizing: border-box;
    transition: transform 0.3s, box-shadow 0.3s;
}

.story h2 {
    margin-top: 0;
    font-size: 1.8rem;
    color: black;
}

.story p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Hover efekti */
.story:hover {
    transform: scale(1.03); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
    border-color: #2a9d8f; 
}

.story:hover h2 {
    color: #e76f51; 
}

.story:hover p {
    color: #264653; 
}


/* Footer */
.footer {
    text-align: center;
    background-color: #2e7d32;
    color: #fff;
    padding: 10px;
    margin-top: 20px;
    font-size: 0.9em;
}
/* Başarı Hikayeleri Bölümü */
.success-stories {
    background-color: #f0f8ff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: calc(100% - 40px);
    max-width: 800px;
}

.success-stories h2 {
    font-size: 2rem;
    color: #2a9d8f;
    text-align: center;
    margin-bottom: 20px;
}

.success-story {
    margin-bottom: 20px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.success-story h3 {
    font-size: 1.5rem;
    color: #264653;
    margin-bottom: 10px;
}

.success-story p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Hover efekti */
.success-story:hover {
    transform: scale(1.03); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
    border-color: #2a9d8f; 
}

.success-story:hover h3 {
    color: #e76f51; 
}

.success-story:hover p {
    color: #264653; 
}

