:root {
    --primary-blue: #1D3557;
    --primary-red: #E63946;
    --white: #FFFFFF;
    --bg-light: #F8F9FA;
    --text-dark: #333333;
    --text-gray: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Header & Nav */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    max-height: 50px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a.link {
    font-weight: 600;
    color: var(--primary-blue);
    transition: color 0.3s;
}

.nav-links a.link:hover {
    color: var(--primary-red);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-red { background-color: var(--primary-red); color: var(--white); }
.btn-red:hover { background-color: #c92a37; color: var(--white); }
.btn-blue { background-color: var(--primary-blue); color: var(--white); }
.btn-blue:hover { background-color: #142842; color: var(--white); }
.btn-outline { border: 2px solid var(--primary-blue); color: var(--primary-blue); background: transparent; }
.btn-outline:hover { background-color: var(--primary-blue); color: var(--white); }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a4c7c 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero .eyebrow {
    display: inline-block;
    background-color: rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 600;
}

.hero h1 { font-size: 2.8rem; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 1.2rem; margin-bottom: 35px; max-width: 800px; margin-left: auto; margin-right: auto; opacity: 0.9; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Trust Strip */
.trust-strip {
    background-color: var(--white);
    padding: 25px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.trust-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.trust-item {
    flex: 1;
    text-align: center;
    font-weight: 700;
    color: var(--primary-blue);
    min-width: 200px;
    font-size: 1.05rem;
}

/* Sections */
.section { padding: 80px 0; }
.section-bg { background-color: var(--white); }
.section-title { text-align: center; font-size: 2.2rem; color: var(--primary-blue); margin-bottom: 50px; }

/* Grid & Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--primary-red);
    transition: transform 0.3s;
}
.card:hover { transform: translateY(-5px); }
.card h3 { color: var(--primary-blue); margin-bottom: 15px; font-size: 1.5rem; }
.card p { margin-bottom: 25px; color: var(--text-gray); }

/* Lists */
.service-list li, .feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-dark);
}
.service-list li::before, .feature-list li::before {
    content: "—";
    color: var(--primary-red);
    font-weight: bold;
}

/* CTA Strip */
.cta-strip { background-color: var(--primary-red); color: var(--white); padding: 50px 0; text-align: center; }
.cta-strip h2 { margin-bottom: 15px; font-size: 2rem; }
.cta-strip p { margin-bottom: 25px; font-size: 1.1rem; }

/* Footer */
footer { background-color: var(--primary-blue); color: var(--white); padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { margin-bottom: 20px; font-size: 1.3rem; color: var(--white); }
.footer-col p, .footer-col a { color: #cfd8dc; margin-bottom: 10px; display: block; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: #90a4ae; font-size: 0.9rem; }

/* Pages Content */
.page-header { background-color: var(--primary-blue); color: var(--white); padding: 60px 0; text-align: center; }
.page-header h1 { font-size: 2.5rem; margin-bottom: 15px; }
.page-header p { font-size: 1.1rem; max-width: 700px; margin: 0 auto; opacity: 0.9; }
.content-box { background: var(--white); padding: 40px; border-radius: 8px; margin-bottom: 40px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.content-box h2 { color: var(--primary-blue); margin-bottom: 20px; border-bottom: 2px solid var(--bg-light); padding-bottom: 10px; }
.content-box p { margin-bottom: 15px; color: var(--text-gray); }

/* Contact Flex */
.contact-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.contact-info-item { margin-bottom: 25px; }
.contact-info-item strong { display: block; color: var(--primary-blue); font-size: 1.1rem; margin-bottom: 5px; }
.map-container iframe { width: 100%; height: 100%; min-height: 400px; border-radius: 8px; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Basit mobil görünümde menüyü gizle, butonu bırak */
    .hero h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .btn { justify-content: center; }
}