:root {
    --primary-color: #3b82f6;
    --accent-color: #308f50;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    padding-top: 50px;
}
.navbar .nav-link.active {
    color: #198754; /* Bootstrap's success color */
    font-weight: bold;
    position: relative;
}


.navbar-brand {
    font-weight: bold;
    font-size: 48px;
    

}

.navbar-brand span {
    color: var(--accent-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.hero-section {
    padding: 80px 0;
}

.hero-badge {
    background-color: #f0f3f4;
    color: #333;
    border-radius: 20px;
    padding: 5px 15px;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-badge:hover{
    background-color: #9cdcb4;
}

.hero-badge i {
    color: var(--accent-color);
    margin-right: 5px;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
}

h1 .text-primary {
    color: var(--primary-color) !important;
}

h1 .text-success {
    color: var(--accent-color) !important;
}

.feature-card {
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.stock-card {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.stock-badge {
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 12px;
    margin-left: 10px;
}

.price-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.steps-section {
    position: relative;
}

.step-line {
    position: absolute;
    left: 50%;
    top: 30%;
    bottom: 30%;
    width: 2px;
    background-color: #e0e0e0;
    transform: translateX(-50%);
}

.step-item {
    position: relative;
    padding: 20px 0;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f0f8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.news-card {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.news-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 20px;
    background-color: white;
}

.news-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    background-color: #f0f8ff;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.cta-section {
    background: linear-gradient(to bottom, #228B22, #021e02);
    padding: 80px 0;
    color: white;
}

.advantages-card {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.advantage-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
}

.icon-box {
    background-color: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.icon-box i {
    color: white;
    font-size: 20px;
}

.advantage-item {
    display: flex;
    margin-bottom: 20px;
}

.advantage-content h5 {
    color: white;
    font-size: 18px;
    margin-bottom: 5px;
}

.advantage-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.5;
}

footer {
    padding: 50px 0;
    background-color: #f9fafb;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: white;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 10px;
    text-decoration: none;
}

.footer-links a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info {
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 10px;
    width: 20px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 50px 0;
    }
    
    .step-line {
        display: none;
    }
}

  