
:root {
    --primary: #3674B5;
    --secondary: #578FCA;
    --light: #A1E3F9;
    --lighter: #D1F8EF;
}

body {
    font-family: 'Inter', sans-serif;
}

.bg-primary-custom {
    background-color: var(--primary);
}

.bg-secondary-custom {
    background-color: var(--secondary);
}

.bg-light-custom {
    background-color: var(--light);
}

.bg-lighter-custom {
    background-color: var(--lighter);
}

.text-primary-custom {
    color: var(--primary);
}

.btn-primary-custom {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-primary-custom:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('abstract-background.jpg') center/cover no-repeat;
    min-height: 500px;
    color: white;
    display: flex;
    align-items: center;
}

.service-card {
    transition: transform 0.3s;
}

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

.top-service {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.why-us-item {
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 20px;
}

.cookie-alert {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--lighter);
    color: #333;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

footer {
    background-color: var(--primary);
    color: white;
}

footer a {
    color: var(--lighter);
    text-decoration: none;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

@media (min-width: 992px) {
    .top-service-img {
        height: 100%;
        object-fit: cover;
    }
}