@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f8f8f8;
    padding: 40px 20px;
}

.offers-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: #282c3f;
    margin-bottom: 4px; 
    text-align: center;
}

.subtitle {
    font-size: 16px;
    color: #686b78;
    margin-bottom: 60px; 
    margin-top: 0; 
    text-align: center;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    justify-content: center;
}

.offer-card {
    background: linear-gradient(135deg,orange, red);
    border-radius: 16px;
    padding: 28px 24px;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(252, 128, 25, 0.5);
}

.offer-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-card p {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.code-box {
    background: white;
    color: #FC8019;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.order-btn {
    background: white;
    color: #FC8019;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.order-btn:hover {
    background: #fff5ec;
    transform: scale(1.05);
}
.back-btn-wrapper {
    max-width: 1200px;
    margin: 0 auto 20px auto;
    text-align: left;
}

.back-btn {
    display: inline-block;
    color: #686b78;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    transition: 0.2s;
}

.back-btn:hover {
    color: #FC8019;
    transform: translateX(-4px);
}