:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f5f6fa;
    --gradient: linear-gradient(45deg, #2c3e50 30%, #3498db 90%);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f4f7fb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.navbar {
    background: var(--primary-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--secondary-color);
}

.hero {
    min-height: 100vh;
    background: var(--gradient), url('yardim.png') center/cover no-repeat;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}




.hero-content {
    max-width: 800px;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* About Section */
.about-details {
    padding: 60px 0;
    background: var(--light-bg);
}

.about-content {
    margin-bottom: 40px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-content ul {
    list-style-type: none;
    padding-left: 20px;
}

.about-content ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.about-content ul li strong {
    color: var(--primary-color);
}

/* Features Section */
.about-features {
    padding: 40px 0; 
    background: var(--light-bg);
    margin-bottom: 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
	margin-bottom: 20px;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
}

/* Achievements Section */
.achievements {
    padding: 40px 0; /* Üst ve alt padding'i biraz daha azaltıyoruz */
    background: var(--light-bg);
    margin-top: 0; /* Başarılar ile önceki bölüm arasındaki boşluğu sıfırlıyoruz */
}

.achievement-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 20px 0;
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
}

.achievement-card i {
    font-size: 40px;
    color: var(--secondary-color);
}

.achievement-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 15px;
}

.achievement-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Count Section */
.count {
    font-weight: bold;
    font-size: 2rem;
    color: var(--secondary-color);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .feature-card, .achievement-card {
        margin: 20px 0;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .about-content ul {
        padding-left: 20px;
    }
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
    text-align: center; /* Footer metinlerini ortalar */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
}

.social-links a {
    color: white;
    margin-right: 15px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Form Styles */
.form-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-section {
        margin: 40px 20px;
        padding: 20px;
    }
	/* KVKK Popup Modali */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal-content {
    background: white;
    margin: 15% auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
    overflow-y: auto;
    max-height: 500px;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}


.kvkk {
    display: flex;
    align-items: center;
    margin-bottom: 50px; 
}

.kvkk-label {
    margin-left: 5px;  
    cursor: pointer;
    color: red;
}


.g-recaptcha {
    margin-bottom: 20px;
}

.submit-button {
    margin-top: 20px;
}

.contact-map {
    display: flex; /* Elemanları yatayda hizalayacağız */
    justify-content: space-between; /* Aralarındaki boşluğu eşit yapacağız */
    gap: 30px; /* İletişim kartları ve harita arasındaki boşluk */
    padding: 20px 0;
}

.contact-info {
    flex: 1; /* İletişim kısmını daha geniş yapıyoruz */
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
}

.map {
    flex: 1; /* Harita kısmını da aynı şekilde genişletiyoruz */
    height: 450px; /* Haritanın boyutunu sabitliyoruz */
}

/* Contact Card düzenlemeleri */
.contact-card {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-card p {
    font-size: 1rem;
}




}

