* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.site-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-weight: normal;
}

.site-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.loans-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #8bc34a;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
}

.loans-label {
    margin-right: 10px;
}

.loans-count {
    font-weight: bold;
}

/* Hero Section Styles */
.hero-section {
    background-color: #ffc107;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.hero-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 18px;
    color: #fff;
}

/* Offers Grid Styles */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.offer-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.offer-card::before {
    content: "Выбор клиентов";
    position: absolute;
    top: 10px;
    left: 10px;
    background: #177245;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
}

.offer-header {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.offer-logo {
    height: 70px;
    
    margin-bottom: 15px;
}

.offer-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.offer-details {
    margin-bottom: 20px;
}

.offer-detail {
    background: #f8f8f8;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.offer-detail::before {
    content: "✓";
    color: #4CAF50;
    margin-right: 10px;
}

.detail-label {
    flex: 1;
}

.detail-value {
    font-weight: bold;
}

.offer-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #8bc34a;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.offer-button:hover {
    background-color: #7cb342;
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 10px;
    }
    
    .offer-card {
        padding: 15px;
    }

    .loans-counter {
        position: static;
        display: inline-block;
        margin-top: 15px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 20px;
    }
}

/* Footer Styles */
.footer {
    background-color: #1f2937;
    color: #fff;
    padding: 2rem 0;
    margin-top: 3rem;
}

.legal-info {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.legal-info p {
    margin-bottom: 1rem;
}

.legal-info p:last-child {
    margin-bottom: 0;
} 
.upk {
    text-transform: uppercase;
    font-weight: bold;
}