:root {
    --primary-color: #2e73c8;
    --accent-color: #a14fba;
    --dark-bg: #212529;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    scroll-behavior: smooth;
}

.hero-section {
    background: linear-gradient(135deg, rgb(6 58 128 / 91%), rgb(254 101 1 / 86%)), 
                url('hero-bg.png');
    background-size: cover;
    background-position: center;
    height: 75vh;
    border-bottom: 5px solid #fe6501;
}
.text-accent {
    color: #ffd1ff;
}

.title-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin-top: 10px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-primary-light { background-color: rgba(46, 115, 200, 0.1); }
.bg-success-light { background-color: rgba(25, 135, 84, 0.1); }

.custom-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.custom-list li::before {
    content: "→";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
}

.form-control {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--accent-color);
}