/* Reset default styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: white;
    color: #333;
}

/* Center the container on the page */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 60px;
}

/* Main container styles */
.contact-box {
    display: flex;
    max-width: 1200px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
    border-radius: 8px;
    overflow: hidden;
}

/* Left section styles */
.left-section {
    flex: 1;
    background-image: linear-gradient(135deg, #388494 0%, #6dbdce 100%);
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-section h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.left-section p {
    font-size: 18px;
    line-height: 1.5;
}

.contact-info {
    margin-top: 30px;
}

.contact-info .iconGroup {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info .icon {
    font-size: 24px;
    margin-right: 10px;
}

.contact-info .details span {
    font-size: 16px;
}

.contact-info .con-social-media {
    margin-top: 30px;
}

.contact-info .con-social-media a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 24px;
}

.con-social-media a {
    display: inline-block;
    margin: 0 10px;
    color: white;
    font-size: 26px;
}

.con-social-media a:hover{
    color: #cbc9c9;
}

/* Right section styles */
.right-section {
    flex: 1;
    padding: 30px;
}

.right-section .messageForm {
    margin-top: 30px;
}

.right-section .inputGroup {
    margin-bottom: 20px;
}

.right-section label {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.right-section input,
.right-section textarea {
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    border-radius: 4px;
}

.right-section button {
    background-color: #358092;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.right-section button:hover {
    background-color: #0d6277;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .contact-box {
        flex-direction: column;
    }

    .left-section {
        padding: 20px;
        text-align: center;
    }

    .left-section h2 {
        font-size: 24px;
    }

    .right-section {
        padding: 20px;
    }

    .contact-container {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 70vh;
        padding: 20px;
    }
}
