  body {
        font-family: "Genos", sans-serif;
        background: linear-gradient(135deg, #f8f7f3, #e9e5dc);
        color: #2b2b2b;
        margin: 0;
        padding: 0;
    }

    .wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }

    .card {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 12px 45px rgba(0, 0, 0, 0.08);
        max-width: 650px;
        width: 100%;
        padding: 50px;
        border: 1px solid #e0d8c3;
    }

    h1 {
        text-align: center;
        color: #2b2b2b;
        margin-bottom: 40px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    label {
        font-weight: 500;
        display: block;
        margin-bottom: 6px;
        color: #444;
        letter-spacing: 0.3px;
    }

    input,
    textarea {
        width: 100%;
        padding: 12px 15px;
        margin-bottom: 18px;
        border: 1px solid #dcd6c5;
        border-radius: 10px;
        background: #fdfcf9;
        transition: all 0.25s ease;
        font-size: 16px;
    }

    input:focus,
    textarea:focus {
        border-color: #c6a660;
        box-shadow: 0 0 0 3px rgba(198, 166, 96, 0.2);
        outline: none;
    }

    .btn {
        background: linear-gradient(135deg, #c6a660, #e2cb88);
        border: none;
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        border-radius: 10px;
        padding: 12px;
        cursor: pointer;
        width: 100%;
        transition: 0.3s ease;
        letter-spacing: 0.5px;
    }

    .btn:hover {
        background: linear-gradient(135deg, #b69552, #d8bc74);
        transform: translateY(-2px);
    }

    .price-display {
        text-align: right;
        font-weight: 600;
        color: #c6a660;
        font-size: 1.2rem;
        margin-bottom: 25px;
    }