/* Genel Stil */
body {
    font-family: Arial, sans-serif;
    background-color: #42e11b; 
    margin: 0;
    padding: 0;
}

.footer {
    text-align: center;
    background-color: #2e7d32;
    color: #fff;
    padding: 10px;
    margin-top: 20px;
    font-size: 0.9em;
}

/* Header */
.header .logo img {
    height: 10rem;
}

.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;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

.navbar a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    width: 80%;
    margin: 20px auto;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Başlık */
h1 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

/* Öneri Bölümü */
.recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.recommendation {
    background-color: #e6f7ff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.recommendation:hover {
    background-color: #d2f7d2; 
}

.recommendation h2 {
    font-size: 1.3rem;
    color: #000000; 
}

.recommendation p {
    font-size: 1rem;
    color: #333;
}
.faq {
    background-color: #f9f9f9;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.faq h2 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    margin-bottom: 5px;
    font-size: 1.2em;
}

.faq-item p {
    margin: 0;
    line-height: 1.5;
    color: #555;
}

.success-stories {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.success-stories h2 {
    font-size: 1.5em;
    color: #333;
}

.success-stories ul {
    list-style-type: disc;
    padding-left: 20px;
}

.success-stories ul li a {
    color: #007bff;
    text-decoration: none;
}

.success-stories ul li a:hover {
    text-decoration: underline;
}

.motivational-quotes {
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.motivational-quotes h2 {
    font-size: 2em;
    color: #1e88e5;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.quotes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.quote {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1.2em;
    color: #424242;
    transition: transform 0.3s, box-shadow 0.3s;
}

.quote:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.quote p {
    margin: 0;
    font-style: italic;
}
