/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    text-align: center;
}

.logo h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #6A1B9A; /* Manisa Mesir Moru */
    display: inline;
}

.logo span {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    color: #FF9800; /* Manisa Mesir Turuncusu */
    font-weight: 600;
}

header hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #6A1B9A, #FF9800);
    margin: 15px auto;
    max-width: 200px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6A1B9A 0%, #4527A0 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #FF9800;
    color: white;
}

.btn-primary:hover {
    background: #F57C00;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #6A1B9A;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .material-icons {
    font-size: 3rem;
    color: #6A1B9A;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
}

.why-us h2 {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
}

.feature .material-icons {
    font-size: 2.5rem;
    color: #FF9800;
    margin-bottom: 20px;
}

.feature h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature p {
    color: #666;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: #6A1B9A;
    color: white;
}

.cta-section .btn-primary:hover {
    background: #4527A0;
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #FF9800;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

footer hr {
    border: none;
    height: 1px;
    background: #555;
    margin-bottom: 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.footer-info h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #FF9800;
}

.footer-info p {
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF9800;
}

.copyright {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid #555;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .services h2,
    .why-us h2,
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo h2 {
        font-size: 2rem;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .services-grid,
    .features {
        grid-template-columns: 1fr;
    }
}