body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

/* HEADER */
.header {
    background: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #f57c00;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #f57c00;
}

/* HERO SECTION */
.hero {
    background: #f57c00;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

    .hero h1 {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 18px;
        opacity: 0.9;
    }

/* OFFER CARD */
.offer-card {
    background: white;
    max-width: 600px;
    margin: -50px auto 40px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.offer-row {
    margin: 15px 0;
    font-size: 18px;
}

.label {
    color: #777;
}

.value {
    font-weight: bold;
    font-size: 22px;
}

/* BUTTONS */
.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.btn {
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.2s;
}

.btn-accept {
    background: #28a745;
}

    .btn-accept:hover {
        background: #218838;
    }

.btn-decline {
    background: #dc3545;
}

    .btn-decline:hover {
        background: #c82333;
    }
