@charset "UTF-8";

:root {
    --primary-color: #1a237e;
    --secondary-color: #0d47a1;
    --accent-color: #2196f3;
    --dark-bg: #0a1929;
    --light-text: #eceff1;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0 80px;
    padding-top: 180px;
    margin-top: 90px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M1200 120L0 16.48V0h1200z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    opacity: 0.1;
}

.navbar {
    background-color: #ffffff !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 80px;
    width: auto;
}

.navbar-toggler {
    border-color: var(--primary-color) !important;
    border-width: 2px !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 35, 126, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 30px;
    height: 30px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(26, 35, 126, 0.25);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        margin-top: 10px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.btn-primary {
    background: var(--accent-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    background: #1976d2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.feature-card {
    border: none;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.quote-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
}

.quote-text {
    font-size: 2rem;
    font-style: italic;
    font-weight: 300;
}

.process-step {
    text-align: center;
    padding: 30px;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.team-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
}

.team-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.team-card .role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

footer {
    background: var(--dark-bg);
    color: var(--light-text);
    padding: 60px 0 30px;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 10px;
}

.benefit-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
}

.accordion-button {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--accent-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.accordion-item {
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-body {
    padding: 1.5rem;
    background-color: #f8f9fa;
}

.lead,
.about {
    font-size: 1rem;
    text-align: justify;
    padding: 0 20px;
}

.p20 {
    padding: 0 20px;
}