body {
    
    color: #333333; /* Dark gray text for readability */
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 0;
    background: conic-gradient(from 0deg, #ffffff, #c7daff, #ffdcd1);
    padding: 0;
}

.consultation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; /* Adds space between sections */
    margin-top: 50px;
}

.consultation-box {
    background-color: #fffaf0; /* Soft off-white for a premium look */
    color: #333333;
    padding: 30px;
    width: 60%;
    border: 4px solid #d4af37; /* Gold border */
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(212, 175, 55, 0.5); /* Gold glow effect */
    transition: transform 0.3s ease-in-out;
}

.consultation-box:hover {
    transform: scale(1.05); /* Subtle zoom on hover */
}

h2 {
    color: #d4af37; /* Gold for headers */
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h5 {
    color: #555555; /* Slightly darker gray */
    font-size: 18px;
}

h1 {
    color: #d4af37; /* Gold price */
    font-size: 32px;
    font-weight: bold;
}

h4 {
    color: #666666;
    font-size: 18px;
    line-height: 1.6;
}
.book-btn {
                background-color: #d4af37; /* Gold */
                color: white;
                padding: 10px 20px;
                font-size: 16px;
                border: none;
                border-radius: 6px;
                cursor: pointer;
                margin-top: 15px;
                transition: background 0.3s ease-in-out;
            }

            .book-btn:hover {
                background-color: #b5942e;
            }

@media screen and (max-width: 768px) {
    .consultation-box {
        width: 90%; /* Adjust layout for mobile */
        padding: 20px;
    }

    h2 {
        font-size: 22px;
    }

    h1 {
        font-size: 28px;
    }
}
