header {
    background-color: #1d2b40;
    padding: 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.logo {
    font-family: 'Playfair Display', serif;
    color: #d4a259;
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.nav-links li {
    position: relative;
    margin-left: 50px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

.nav-links li a:hover {
    color: #d4a259;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    background-color: #1d2b40;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.4s;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        position: absolute;
        top: 53px;
        /* Adjust this value based on the height of your header */
        background-color: #1d2b40;
    }

    .nav-links li {
        text-align: center;
        margin: 0;
    }

    .nav-links li a {
        padding: 5px;
        width: 100%;
        display: block;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown-content {
        position: static;
        background-color: #1d2b40;
    }
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F5F5F5;
}

.contact-section {
    display: flex;
    flex-direction: column;
}

/* .bi {
    font-size: 1.5rem;
    margin-right: 5px;
} */

.header-image {
    background-image: url('contactpicture.jpg');
    /* Replace with the actual image URL */
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    z-index: 1;
    /* align-items: center; */

}

.header-image h1 {
    font-size: 58px;
    margin-right: 900px;
    margin-top: 200px;
}

.content {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background-color: white;
}

.left-column {
    width: 45%;
}

.right-column {
    width: 45%;
}

.right-column form {
    display: flex;
    flex-direction: column;
    background-color: #1D2B44;
    padding: 20px;
    border-radius: 8px;
    color: white;
}

.right-column form input,
.right-column form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid white;
    border-radius: 4px;
    color: white;
    background-color: #1a2c4b;
}

.right-column form textarea {
    resize: none;
    height: 100px;
    /* background-color:#169a48 ; */
}

.right-column form button {
    background-color: #e6993e;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    align-self: center;
}


.right-column form button:hover {
    background-color: #cc9b30;
}

.content .left-column p {
    font-size: 20px;
    /* text-align: justify; */

}

.content .right-column p {
    font-size: 20px;

}

.content .left-column h2 {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    color: #cc9b30;
    margin-top: 10px;

}

.content .left-column h3 {
    font-size: 32px;
    color: #cc9b30;
    font-family: 'Playfair Display', serif;

}

.footer {
    background-color: #1b2a3c;
    padding: 20px 0;
    /* padding-bottom: 0px; */
    text-align: center;
    color: white;
    font-family: 'Arial', sans-serif;
}

.footer nav {
    margin-bottom: 10px;
    justify-content: center;
}

.footer nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    letter-spacing: 1px;
}

.footer .social-icons {
    margin-bottom: 10px;
}

.footer .social-icons a {
    margin: 0 10px;
    color: white;
    font-size: 20px;
}

.footer p {
    margin: 5px 0;
    font-size: 14px;
}

/* @media (max-width: 480px) {
    header {
        padding: 10px;
    }

    nav {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        overflow-x: hidden;
    }
    .footer nav a {
        margin: 3px 9px;
        text-decoration: none;
        color: white;
        font-size: 12px;
        letter-spacing: 1px;
    }    
    nav ul li a {
        font-size: 1rem;
    }
    .logo {
        font-size: 18px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;
        font-size: 1rem;
    }
    .footer{
      
        padding-right:2px !important;
     
    }}
     */
/* @media (max-width: 768px) {
    nav ul {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        justify-content:right;
        
    }

    nav ul li {
        margin: 5px 0;
    }
    nav ul li a {
        font-size: 1rem;
    }
    .logo{
        font-size: 1.8rem;
    }

    .header-image h1 {
        font-size: 40px;
        margin: 0;
    }

    .content {
        flex-direction: column;
        padding: 20px;
    }

    .left-column,
    .right-column {
        width: 100%;
    }

    .right-column form {
        padding: 10px;
    }

    .right-column form button {
        padding: 10px;
        font-size: 16px;
    }
} */
@media (min-width: 600px) and (max-width:767px) {
    .header-image {
        background-image: url(contactpicture.jpg);
        background-size: cover;
        background-position: center;
        height: 300px;
        width: 775px;
        position: relative;
        color: white;
        text-align: center;
        display: flex;
        justify-content: center;
        overflow: hidden;
        /* align-items: center; */
    }

    .header-image h1 {
        font-size: 40px;
        margin: 0;
        margin-top: 112px;
        margin-left: -220px;
        overflow: hidden;
    }

    header {
        background-color: #1d2b40;
        padding: 10px;
        width: 768px;
        overflow: hidden;
    }

    nav ul {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        justify-content: right;

    }

    nav ul li {
        margin: 5px 0;
    }

    nav ul li a {
        font-size: 1rem;
    }

    .logo {
        font-size: 1.5em;
        margin: 0 auto;

    }

    .content {
        flex-direction: column;
        padding: 20px;
        width: 768px;
        overflow: hidden;
    }

    .right-column form {
        padding: 10px;
        justify-content: center;
        /* width: 600px;
        margin-left: 60px; */
    }

    .content .left-column h2 {
        font-size: 32px;
        font-family: 'Playfair Display', serif;
        color: #cc9b30;
        margin-top: 10px;
    }

    .content .left-column h3 {
        font-size: 32px;
        color: #cc9b30;
        font-family: 'Playfair Display', serif;
    }

    .footer {
        background-color: #1b2a3c;
        padding: 20px 0;
        padding-bottom: 0px;
        text-align: center;
        color: white;
        width: 807px;
        font-family: 'Arial', sans-serif;
        overflow: hidden;
    }

    .footer nav a {
        margin: 0 15px;
        overflow: hidden;
        text-decoration: none;
        color: white;
        font-size: 12px;
        letter-spacing: 0px;
        text-align: center;
        margin-left: -2px;
        margin-right: 12px;
        /* padding-left: 12px; */
    }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .header-image {
        height: 350px;
    }

    .logo {
        font-family: 'Playfair Display', serif;
        color: #d4a259;
        font-size: 15px;
        font-weight: bold;
        margin-left: 15px;
    }

    nav ul li a {
        text-decoration: none;
        color: #fff;
        font-size: 14px;
    }

    .header-image h1 {
        font-size: 46px;
        margin-right: 0;
        margin-left: -262px;
        margin-top: 148px;
    }

    .content .left-column p {
        font-size: 20px;
        padding-left: 17px;
    }

    .content .right-column p {
        font-size: 20px;
        padding-right: 10px;
    }

    .right-column form {
        padding: 15px;
        width: 700px;
    }

    .content {
        flex-direction: column;
        padding: 30px;
    }

    .left-column,
    .right-column {
        width: 100%;
    }

    .right-column form {
        padding: 15px;
    }

    .right-column form button {
        padding: 10px;
        font-size: 18px;
    }

}

/* Large screens */
/* @media (min-width: 1025px) {
    .header-image h1 {
        margin-right: 900px;
    }
} */
@media (max-width: 480px) {
    nav ul {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        justify-content: right;

    }

    nav ul li {
        margin: 5px 0;
    }

    nav ul li a {
        font-size: 1rem;
    }

    .logo {
        font-size: 20px;
    }

    .header-image {
        background-image: url(contactpicture.jpg);
        background-size: cover;
        background-position: center;
        height: 200px;
        position: relative;
        color: white;
        text-align: center;
        display: flex;
        justify-content: center;
        /* align-items: center; */
    }

    .header-image h1 {
        font-size: 32px;
        margin: 77px;
        margin-right: 221px;
    }

    .content {
        flex-direction: column;
        padding: 20px;
    }

    .content .left-column p {

        font-size: 16px;
    }

    .content .left-column h2 {
        font-size: 28px;
        font-family: 'Playfair Display', serif;
        color: #cc9b30;
        margin-top: -4px;
        padding-bottom: -7px;
    }

    .content .left-column h3 {
        font-size: 28px;
        color: #cc9b30;
        font-family: 'Playfair Display', serif;
    }

    .content .right-column p {
        font-size: 16px;
    }

    .left-column,
    .right-column {
        width: 100%;
    }

    .right-column form {
        padding: 10px;
    }

    .right-column form button {
        padding: 10px;
        font-size: 16px;
    }

    .footer {
        flex-direction: row;
        text-align: center;
    }

    .footer .social-icons {
        margin-bottom: 10px;
        justify-content: center;
        text-align: center;
    }

    .footer p {
        margin: 5px 0;
        font-size: 14px;
        text-align: center;
    }

    .footer nav {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        overflow-x: hidden;
    }

    .footer nav a {
        margin: 3px 9px;
        text-decoration: none;
        color: white;
        font-size: 12px;
        letter-spacing: 1px;
    }
}



@media (min-width: 992px) and (max-width:1199px) {
    .header-image {
        background-image: url(contactpicture.jpg);
        background-size: cover;
        background-position: center;
        height: 450px;
        position: relative;
        color: white;
        text-align: center;
        display: flex;
        justify-content: center;
        /* align-items: center; */
    }

    .header-image h1 {
        font-size: 50px;
        margin-right: 550px;
        margin-top: 200px;
    }
}

@media(min-width: 1200px) {
    .header-image h1 {
        font-size: 58px;
        margin-right: 727px;
        margin-top: 200px;
    }
}


@media (min-width: 481px) and (max-width:599px) {

    .header-image {
        background-image: url(contactpicture.jpg);
        background-size: cover;
        background-position: center;
        height: 250px;
        position: relative;
        color: white;
        text-align: center;
        display: flex;
        justify-content: center;
        z-index: 1;
        /* align-items: center; */
    }


    .content {
        flex-direction: column;
        padding: 20px;
    }

    .content .left-column p {

        font-size: 16px;
    }

    .content .left-column h2 {
        font-size: 32px;
        font-family: 'Playfair Display', serif;
        color: #cc9b30;
        margin-top: -4px;
        padding-bottom: -7px;
    }

    .content .left-column h3 {
        font-size: 32px;
        color: #cc9b30;
        font-family: 'Playfair Display', serif;
    }

    .left-column,
    .right-column {
        width: 100%;
    }

    .right-column form {
        padding: 10px;
    }

    .right-column form button {
        padding: 10px;
        font-size: 16px;
    }

    .case img {
        /* width: 100%; */
        height: auto;
        width: 335px;
        margin-bottom: 10px;
    }

    .footer {
        flex-direction: row;
        text-align: center;
    }

    .footer .social-icons {
        margin-bottom: 10px;
        justify-content: center;
        text-align: center;
    }

    .footer p {
        margin: 5px 0;
        font-size: 14px;
        text-align: center;
    }

    .footer nav {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        overflow-x: hidden;
    }

    .footer nav a {
        margin: 3px 9px;
        text-decoration: none;
        color: white;
        font-size: 14px;
        letter-spacing: 1px;
    }

}

.link-inheritance {
  text-decoration: none;
  color: inherit;
}
.g-recaptcha {
  margin: 15px 0;
}