:root {
    --primary-color: #0A1A35;
    --accent-color: #00D4A0;
    --background-light: #F5F7FA;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
}

h2 {
    font-size: 1.5rem;
}

.btn-custom-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-custom-primary:hover {
    background-color: #00c191;
    color: var(--white);
    transform: translateY(-2px);
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-brand:hover {
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.process-hero {
    padding: 120px 0 60px;
    text-align: center;
    color: var(--text-dark);
}

.process-hero h1 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-hero p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.process-steps {
    padding: 60px 0;
}

.step-item {
    position: relative;
    margin-bottom: 3rem;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: -3rem;
    width: 2px;
    background: var(--accent-color);
    opacity: 0.3;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.step-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.step-content li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.step-content li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight-box {
    background: var(--background-light);
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
}

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

.advantages__title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.advantage-card {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.advantage-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.advantage-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--accent-color);
}

.footer address {
    margin-bottom: 0;
}

.footer address p {
    margin-bottom: 0.5rem;
}

.footer ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2rem;
}