body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7fafa;
}

/* Main section */
.faq-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 100px;
    position: relative;
    flex-wrap: wrap;
}

/* Left content */
.faq-left h1 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 22px;
    color: #444;
}

/* Right image */
.faq-right img {
    width: 430px;
    max-width: 100%;
}

/* Appointment Button */
.book-btn {
    position: absolute;
    right: 100px;
    bottom: 40px;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 40px;
    color: white;
    cursor: pointer;
    background: linear-gradient(to right, #00b8a4, #007d87);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.18);
}

/* Responsive */
@media (max-width: 992px) {
    .faq-hero {
        padding: 60px 40px;
    }

    .faq-left h1 {
        font-size: 40px;
    }

    .book-btn {
        position: static;
        margin-top: 30px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .faq-hero {
        flex-direction: column;
        text-align: center;
    }

    .faq-right img {
        margin-top: 40px;
        width: 60%;
    }

    .faq-left h1 {
        font-size: 32px;
    }

    .breadcrumb {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .faq-right img {
        width: 80%;
    }

    .book-btn {
        padding: 15px 30px;
        font-size: 18px;
    }
}
