:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
}

.search-box {
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.search-box:hover {
    transform: translateY(-2px);
}

.search-box input {
    height: 50px;
}

.search-box input:focus {
    box-shadow: none;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .hero-section {
        min-height: 300px;
        padding: 2rem 0;
    }

    .search-box {
        margin: 0 1rem;
    }
}
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.score-badge {
    background-color: #007bff;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    margin: 10px 0;
}

.card {
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Footer stili */
footer {
    background-color: #000 !important;
    color: #fff !important;
    padding: 3rem 0;
    margin-top: auto;
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
}

footer a:hover {
    color: #fff !important;
}

footer .social-links a {
    background: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Global Layout */
.tool-section {
    flex: 1 0 auto;
    padding: 3rem 0;
}

/* Common Styles */
.tool-container {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.tool-title {
    font-weight: 700;
    color: #2d3748;
}

.tool-description {
    color: #718096;
}