.offer-section {
    background-color: #fffff0;
    padding: 60px 20px;
    margin-top: 40px;
}

.section-header {
    text-align: center;
    width: 100%;
    padding: 20px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    line-height: 1.5;
    color: #444;
}

.offer-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    padding: 40px;
    gap: 40px;
}

.offer-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.offer-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.offer-content-col {
    flex: 1.2;
    text-align: center;
}

.offer-discount-title {
    color: #d32f2f;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.offer-content-col a {
    text-decoration: none !important;
}

.offer-main-title {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #000;
}

.offer-desc {
    font-size: 16px;
    margin-bottom: 30px;
    color: #444;
}

.big-offer-btn {
    font-size: 20px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(83, 166, 248, 0.4);
}

.timer-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #000;
}

.timer-label {
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
}

.timer-digits {
    color: #d32f2f;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1;
}

.guarantee-text {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .offer-section {
        margin-top: 0;
        padding: 0;
    }

    .offer-container {
        flex-direction: column;
        padding: 10px;
        gap: 20px;
    }

    .offer-image-col {
        width: 100%;
    }

    .offer-main-title {
        font-size: 18px;
        margin: 0;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .section-header p {
        font-size: 14px;
    }

    .offer-discount-title {
        font-size: 18px;
    }

    .offer-desc {
        margin-bottom: 10px;
    }

    .big-offer-btn {
        font-size: 14px;
    }

    .timer-wrapper {
        gap: 0;
    }

    .timer-label {
        font-size: 14px;
    }
}