.hero-section {
    background: linear-gradient(rgba(0, 77, 38, 0.9), rgba(0, 77, 38, 0.95)), url(https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    border-radius: 10px;
    margin-bottom: 50px;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #e6be05;
}

.hero-content .highlight {
    font-size: 24px;
    font-weight: 700;
    color: #e6be05;
    margin: 30px 0;
    line-height: 1.6;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content .lead {
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.95;
}

/* Информационные карточки */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #e6be05;
}

.info-card h3 {
    color: #004d26;
    font-size: 22px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card p {
    line-height: 1.6;
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.info-card .feature-list {
    list-style: none;
    margin-top: 20px;
}

.info-card .feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.info-card .feature-list li:last-child {
    border-bottom: none;
}

.info-card .feature-list i {
    color: #e6be05;
}

/* Секция с продуктами */
.products-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 32px;
    color: #004d26;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e6be05;
    display: flex;
    align-items: center;
    gap: 15px;
}

.products-table-container {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.products-table {
    width: 100%;
    border-collapse: collapse;
}

.products-table thead {
    background-color: #004d26;
    color: white;
}

.products-table th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.products-table th i {
    margin-right: 8px;
    color: #e6be05;
}

.products-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.products-table tbody tr:hover {
    background-color: rgba(230, 190, 5, 0.05);
}

.products-table td {
    padding: 18px 15px;
}

.product-name a {
    color: #004d26 !important;
    font-weight: 500;
}

.product-yield {
    color: #e6be05;
    font-weight: 700;
    font-size: 18px;
}

.product-price a {
    font-weight: 700;
    color: #004d26;
}

.product-action .btn-invest {
    background-color: #004d26;
    color: white;
    border: none;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.product-action .btn-invest:hover {
    background-color: #003d1d;
}

.special-offer-badge {
    background-color: #e6be05;
    color: #004d26;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 10px;
}

/* Как это работает */
.how-it-works {
    margin-bottom: 60px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e6be05;
    color: #004d26;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.step-icon {
    font-size: 40px;
    color: #004d26;
    margin-bottom: 20px;
}

.step h4 {
    color: #004d26;
    margin-bottom: 15px;
    font-size: 20px;
}

.step p {
    color: #666;
    line-height: 1.5;
}

/* Программы */
.programs-section {
    margin-bottom: 60px;
}

.programs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.program-header {
    background-color: #004d26;
    color: white;
    padding: 25px;
    text-align: center;
}

.program-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #e6be05;
}

.program-yield {
    font-size: 32px;
    font-weight: 700;
    color: #e6be05;
    margin: 10px 0;
}

.program-body {
    padding: 25px;
}

.program-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #e6be05;
    color: #004d26;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.program-btn:hover {
    background-color: #d4ac00;
}

/* Кнопки */
.cta-section {
    text-align: center;
    margin-bottom: 60px;
}

.btn-primary {
    background-color: #e6be05;
    color: #004d26;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.btn-primary:hover {
    background-color: #d4ac00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary i {
    font-size: 20px;
}
