:root {
    /* Trust Pastel Palette */
    --primary-color: #3D7D8A;          /* Soft Petrol Blue (60%) */
    --secondary-color: #C3EAD4;        /* Light Mint Green (30%) */
    --accent-color: #F7A6A0;           /* Pastel Coral (30%) */
    --highlight-color: #FFE29A;        /* Soft Mango Yellow (30%) */
    --neutral-color: #B0B0B0;          /* Light Tortora Gray (10%) */

    /* Text colors */
    --text-dark: #333333;
    --text-light: #666666;

    /* Backgrounds */
    --background: #FFFFFF;
    --background-light: #FAFAFA;
    --light-bg: #FAFAFA;
    --border-color: #dee2e6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background);
    color: var(--text-dark);
}

.hero-section {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.4rem;
    opacity: 0.9;
}

.service-card {
    border: 1px solid var(--neutral-color);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    background: var(--background);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-icon.fisco {
    background: var(--accent-color);
}

.service-icon.paghe {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.service-card .card-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.btn-custom {
    background: var(--highlight-color);
    border: none;
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 226, 154, 0.3);
    color: var(--text-dark);
    background: #f4db7a;
}

.features-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.feature-item {
    text-align: center;
    margin-bottom: 40px;
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.navbar-brand {
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--highlight-color) !important;
}

footer {
    margin-top: auto;
}

/* Language Dropdown */
.dropdown-item {
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--secondary-color) !important;
    color: var(--text-dark) !important;
}

.dropdown-item.active {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.dropdown-item button {
    padding: 0.5rem 1rem;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.2rem;
    }

    .service-card {
        margin-bottom: 30px;
    }
}