:root {
    --primary-color: #022b41;
    --primary-hover: #f1b705;
    --secondary-color: #2c3e50;
    --text-color: #4a5568;
    --light-bg: #f8fafc;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

.hero-section {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.hero-section h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.tool-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    background-color: var(--primary-color);
    color: white;
    font-size: 2rem;
    padding: 25px 0;
    text-align: center;
}

.tool-content {
    padding: 25px;
}

.tool-content h2 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.tool-content p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.tool-link {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.tool-link:hover {
    background-color: var(--primary-hover);
}

.faq-section {
    background-color: var(--light-bg);
    padding: 50px;
    border-radius: var(--border-radius);
    margin-top: 40px;
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2rem;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.breadcrumb {
    padding: 15px 0;
    font-size: 0.9rem;
    color: #718096;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 30px 20px;
    }
}