body {
    background: #f5f6fa;
    font-family: Arial, sans-serif;
}

.hero {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: white;
    padding: 80px 0;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
}

.hero p {
    font-size: 19px;
    color: #d1d5db;
}

.search-box {
    background: white;
    padding: 18px;
    border-radius: 16px;
}

.hero-card {
    background: white;
    color: #111827;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.hero-card a {
    display: block;
    background: #f3f4f6;
    color: #111827;
    text-decoration: none;
    padding: 14px;
    border-radius: 12px;
    margin-top: 12px;
    font-weight: 600;
}

.hero-card a:hover {
    background: #ffc107;
}

.section-title {
    font-weight: 800;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 18px;
    min-height: 160px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.feature-card h5 {
    font-weight: 800;
}

/* Site logosu, marka yazısı ve slogan */
.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: min(420px, 60vw);
    padding-top: 4px;
    padding-bottom: 4px;
    text-decoration: none;
}

.site-brand-logo {
    width: auto;
    height: 46px;
    max-width: 150px;
    object-fit: contain;
    flex: 0 0 auto;
}

.site-brand-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.08;
}

.site-brand-name {
    display: block;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-brand-slogan {
    display: block;
    color: rgba(255, 255, 255, .68);
    font-size: .71rem;
    font-weight: 500;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 575.98px) {
    .site-brand { max-width: 68vw; gap: 8px; }
    .site-brand-logo { height: 39px; max-width: 112px; }
    .site-brand-name { font-size: 1rem; }
    .site-brand-slogan { font-size: .65rem; max-width: 180px; }
}
