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

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.contact-details {
    flex: 1;
    padding: 40px;
    background: #fff;
}

.contact-details h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #222;
    letter-spacing: 1px;
}

.contact-details p {
    color: #555;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.phone {
    font-weight: bold;
    font-size: 20px;
    color: #000;
    margin-top: 10px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin: 10px 8px;
    font-size: 22px;
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ff6600;
}

.contact-form {
    flex: 1;
    padding: 40px;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 12px 40px;
    font-size: 16px;
    outline: none;
    background: transparent;
    transition: border-color 0.3s;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-bottom: 2px solid #ff6600;
}

.input-group i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.textarea textarea {
    height: 90px;
    resize: none;
}

.checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox label {
    margin-left: 8px;
    font-size: 14px;
    color: #555;
}

.submit-btn {
    width: 100%;
    background: #ff6600;
    color: #fff;
    padding: 14px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #e55a00;
}
