/* Your existing styles here */
    .hero {
        width: 100%;
        height: 92vh;
        background-image: url(../images/hvg.jpg);
        background-size: cover;
        background-position: center;
        position: relative;
        overflow: hidden;
    }
    button {
        cursor: pointer; 
    }
    #quote{
        color: #fff;
        padding: 10px 25px;
        font-size: 20px;
        background: var(--primary-color);
        border: 1px solid var(--primary-color);
        border-radius: 10px;
        outline: pointer;
    }
    #quote:hover{
        background: var(--secondary-color);
    }
    .content {
        color: #fbfcfd;
        position: absolute;
        top: 50%;
        left: 8%;
        transform: translateY(-50%);
        z-index: 2;
        opacity: 1;
    }
    .content h1{
        width: 100%;
        font-size: 65px;
        line-height: 80px;
        margin: 0;
    }
    .content h2{
        width: 85%;
        font-size: 30px;
        margin:10px 0 15px;
        line-height: 30px;
    }
    
    /* Additional styles for the form */
    .appointment-form {
        position: absolute;
        top: 50%;
        right: 8%;
        transform: translateY(-50%);
        z-index: 2;
        background: rgba(255, 255, 255, 0.8);
        padding: 20px;
        border-radius: 10px;
        border: 1px solid #166A9B;
        width: 25%;
    }
    #appointment-title{
        width: 100%;
        text-align: center;
        font-size: 25px;
    }
    .appointment-form label {
        display: block;
        margin-bottom: 8px;
    }
    .appointment-form input, .appointment-form select, .appointment-form textarea {
        display: block;
        width: 100%;
        padding: 8px;
        margin-bottom: 12px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
    }
    .appointment-form button {
        background-color: #4CAF50;
        color: white;
        padding: 10px 15px;
        border: none;
        border-radius: 4px;
        cursor: pointer;   
    }
    .phone{
        position: relative;
        display: flex;
    }
    #countryCode{
        width:20%;
        background: #d1d1d1;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    #mobile{
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    
    /* Responsive Design */
    @media screen and (max-width: 768px) {
        .hero {
            height: auto
        }
        .content, .appointment-form {
            position: relative;
            top: initial;
            left: initial;
            transform: initial;
            width: 100%;
            text-align: center;
        }
        .content {
            margin: 20px 0;
        }
        .content h1{
            width: 100%;
            font-size: 35px;
            margin: 0;
        }
        .content h2{
            width: 100%;
            font-size: 20px;
            margin-top: 0;
        }
        .content h4{
            text-align: left;
            padding: 0 20px;
        }
        .appointment-form {
            background: rgba(255, 255, 255, 0.8);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #166A9B;
            width: 90%;
            margin: 20px auto;
            top: 0;
            right: 0;
        }
        #countryCode {
            width: 30%;
            border-top-right-radius: 0px;
            border-bottom-right-radius: 0px;
        }
        #mobile {
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }
        .appointment-form button{
            font-size: 25px;
            width: 100%;
        }
        .appointment-form button:hover{
            box-shadow: -5px 5px #4caf50;
        }
        #quote{
            margin: 20px auto;
        }
    }
    
    @media (min-width: 769px) and (max-width: 1024px){
         .hero {
            height: auto
        }
        .content, .appointment-form {
            position: relative;
            top: initial;
            left: initial;
            transform: initial;
            width: 100%;
            text-align: center;
        }
        .content {
            margin: 20px 0;
        }
        .content h1{
            font-size: 80px;
            margin: 0;
            margin: 30px 0;
        }
        .content h2{
            font-size: 30px;
            color: #2c3e50;
            margin: 20px 0;
        }
        .content h4{
            font-size: 40px;
            text-align: center;
            padding: 0 20px;
        }
        .appointment-form {
            background: rgba(255, 255, 255, 0.8);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #166A9B;
            width: 70%;
            margin: 20px auto;
            top: 0;
            right: 0;
        }
        #countryCode {
            width: 30%;
            border-top-right-radius: 0px;
            border-bottom-right-radius: 0px;
        }
        #mobile {
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }
        .appointment-form button{
            font-size: 25px;
            width: 100%;
        }
        .appointment-form button:hover{
            box-shadow: -5px 5px #4caf50;
        }
        #quote{
            margin: 20px auto;
        }
        .appointment-form input, .appointment-form select, .appointment-form textarea {
            padding: 15px;
            font-size: 18px;
        }
    }
    /* End Responsive Design */