@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
}

.feature-card {
    transition: all 0.3s ease;
}

.page-header {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 138, 0.7);
}

.page-header h1 {
    position: relative;
    z-index: 10;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .page-header {
        height: 300px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

table {
    border-collapse: collapse;
}

.price-table th {
    background-color: #1e3a8a;
    color: white;
    padding: 1rem;
}

.price-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.tab-button {
    transition: all 0.3s ease;
}

.tab-button.active {
    background-color: #1e3a8a;
    color: white;
}
