/* FORCE HEADER DESIGN */
.petsure-header {
    max-width: 1100px;
    margin: 20px auto;
    border-radius: 25px;
    overflow: hidden;
}

.petsure-header img {
    width: 100%;
    display: block;
    border-radius: 25px;
}

/* LEFT SIDE */
.header-left {
    position: relative;
}

.header-left img {
    width: 320px;
    border-radius: 20px;
}

/* BADGE */
.promo-badge {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 120px;
    height: 120px;
    background: #00A5BD;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

/* RIGHT SIDE */
.header-right {
    max-width: 520px;
}

.header-right h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #fff;
}

.header-right p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

/* BUTTONS */
.header-buttons {
    margin-top: 10px;
}

.header-buttons a {
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    margin-right: 10px;
    font-weight: bold;
    display: inline-block;
}

/* PRIMARY */
.btn-primary {
    background: #00A5BD;
    color: #fff;
}

/* SECONDARY */
.btn-secondary {
    background: #fff;
    color: #333;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header-left img {
        width: 250px;
    }

    .promo-badge {
        position: static;
        margin-bottom: 10px;
    }
}