body {
    font-family: 'Inter', Arial, sans-serif;
    background: #fff;
    color: #222;
}
.hero-bg {
    background: #f7ede7;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    position: relative;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a7c7b;
    line-height: 1.1;
}
.hero-desc {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 1.5rem;
}
.hero-img {
    border-radius: 1rem;
    overflow: hidden;
    width: 100%;
    max-width: 340px;
    height: 340px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.destination-btn {
    background: #f7ede7;
    color: #1a7c7b;
    border: none;
    border-radius: 20px;
    padding: 10px 22px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 4px;
    margin-right: 8px;
    margin-top: 8px;
}
.destination-btn.active, .destination-btn:focus, .destination-btn:hover {
    background: #1a7c7b;
    color: #fff;
}
.esta-section {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    overflow: hidden;
}
.esta-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.esta-desc {
    font-size: 1rem;
    color: #444;
    margin-bottom: 18px;
}
.esta-btn {
    background: #222;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 22px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-right: 10px;
    text-decoration: none;
}
.esta-btn:hover {
    background: #1a7c7b;
}
.help-card {
    background: #f7ede7;
    border-radius: 12px;
    padding: 28px 18px;
    text-align: center;
    min-height: 180px;
}
.help-card-title {
    font-weight: 700;
    margin-bottom: 8px;
}
.about-section {
    background: #f7ede7;
    padding: 48px 0 32px 0;
    margin-top: 48px;
}
.about-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 18px;
    text-align: center;
    font-weight: 600;
    min-width: 180px;
}
.footer-logo {
    font-weight: 700;
    color: #1a7c7b;
    margin-bottom: 8px;
}
.footer-legal {
    font-size: 0.85rem;
    color: #aaa;
}
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.cookie-bar.hide {
    opacity: 0;
    pointer-events: none;
    bottom: -100px;
}
.stepper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    background: #fff;
    border: 1px solid #cfcfcf;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
}
.stepper .step {
    flex: 1;
    text-align: center;
    padding: 1rem 0.5rem;
    font-weight: 500;
    color: #1a4d1a;
    background: #f7f7f7;
    border-right: 1px solid #e0e0e0;
}
.stepper .step:last-child { border-right: none; }
.stepper .active {
    background: #1a4d1a;
    color: #fff;
}
.form-section {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 2.5rem 2rem 2.5rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}
.form-label { font-weight: 500; }
.form-control:focus { border-color: #1a4d1a; box-shadow: 0 0 0 0.2rem rgba(26,77,26,.08); }
.form-control, .form-select { border: 2px solid #1a4d1a33; }
.form-check-input:checked { background-color: #1a4d1a; border-color: #1a4d1a; }
.btn-next, .btn-prev, .btn-pay { min-width: 120px; font-weight: 600; }
.btn-next, .btn-pay { background: linear-gradient(180deg, #4caf50 0%, #388e3c 100%); color: #fff; border: none; }
.btn-next:hover, .btn-pay:hover { background: #256029; color: #fff; }
.btn-prev { background: #eee; color: #222; border: none; }
.secure-logos img { height: 32px; margin-right: 12px; }
.price-box {
    background: #e8f5e9;
    border: 2px solid #1a4d1a33;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a4d1a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.confirmation-box {
    background: #e8f5e9;
    border: 2px solid #1a4d1a33;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    color: #1a4d1a;
    font-size: 1.2rem;
}
.form-error {
    color: #b71c1c;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}
.expiry-fields {
    display: flex;
    gap: 8px;
    align-items: center;
}
.expiry-fields input {
    width: 100px;
    text-align: center;
}
@media (max-width: 600px) {
    .form-section { padding: 1rem 0.5rem; }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-img {
        max-width: 100%;
        height: 220px;
    }
}