.offer-services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAF8 0%, #F0F8F0 100%);
    position: relative;
}

.offer-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.offer-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.offer-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2D4A2D;
    margin: 0 0 20px 0;
    line-height: 1.2;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.02em;
}

.offer-subtitle-text {
    font-size: 1.3rem;
    color: #5A6B5A;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.offer-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.offer-card-wrapper {
    position: relative;
}

.offer-card-link {
    display: block;
    text-decoration: none;
    border-radius: 25px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(90, 138, 90, 0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 320px;
    border: 2px solid transparent;
}

.offer-card-link:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(90, 138, 90, 0.2);
    border-color: #E8F5E8;
    text-decoration: none;
}

.offer-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.offer-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.offer-card-link:hover .offer-card-image {
    transform: scale(1.08);
}

.offer-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(45, 74, 45, 0.1) 0%,
        rgba(90, 138, 90, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card-link:hover .offer-image-overlay {
    opacity: 1;
}

.offer-content-wrapper {
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.offer-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2D4A2D;
    margin: 0;
    line-height: 1.3;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: color 0.3s ease;
}

.offer-card-link:hover .offer-card-title {
    color: #5A8A5A;
}

.offer-card-arrow {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #F8FAF8, #E8F5E8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.offer-card-arrow i {
    font-size: 18px;
    color: #5A8A5A;
    transition: all 0.3s ease;
}

.offer-card-link:hover .offer-card-arrow {
    background: linear-gradient(135deg, #5A8A5A, #7BA428);
    transform: translateX(8px);
}

.offer-card-link:hover .offer-card-arrow i {
    color: #ffffff;
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    .offer-main-container {
        padding: 0 30px;
    }
    
    .offer-main-title {
        font-size: 3rem;
    }
    
    .offer-cards-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .offer-services-section {
        padding: 100px 0;
    }
    
    .offer-main-title {
        font-size: 2.8rem;
    }
    
    .offer-subtitle-text {
        font-size: 1.2rem;
    }
    
    .offer-section-header {
        margin-bottom: 60px;
    }
    
    .offer-cards-grid {
        gap: 24px;
    }
    
    .offer-card-link {
        height: 300px;
    }
    
    .offer-image-container {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .offer-services-section {
        padding: 80px 0;
    }
    
    .offer-main-container {
        padding: 0 24px;
    }
    
    .offer-main-title {
        font-size: 2.4rem;
    }
    
    .offer-subtitle-text {
        font-size: 1.1rem;
    }
    
    .offer-section-header {
        margin-bottom: 50px;
    }
    
    .offer-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }
    
    .offer-card-link {
        height: 280px;
    }
    
    .offer-image-container {
        height: 180px;
    }
    
    .offer-content-wrapper {
        padding: 20px 24px;
        height: 100px;
    }
    
    .offer-card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .offer-services-section {
        padding: 60px 0;
    }
    
    .offer-main-title {
        font-size: 2rem;
    }
    
    .offer-subtitle-text {
        font-size: 1rem;
    }
    
    .offer-card-link {
        height: 260px;
        border-radius: 20px;
    }
    
    .offer-image-container {
        height: 160px;
    }
    
    .offer-content-wrapper {
        padding: 16px 20px;
        height: 100px;
    }
    
    .offer-card-title {
        font-size: 1.2rem;
    }
    
    .offer-card-arrow {
        width: 40px;
        height: 40px;
    }
    
    .offer-card-arrow i {
        font-size: 16px;
    }
}

@media print {
    .offer-services-section {
        background: white !important;
        padding: 40px 0 !important;
    }
    
    .offer-card-link {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        break-inside: avoid;
    }
    
    .offer-card-arrow {
        background: #f5f5f5 !important;
    }
}