* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-info {
    background-color: #4a3831;
    color: white;
    padding: 30px;
    border-radius: 10px;
}

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

.contact-form h2 {
    margin-bottom: 20px;
    color: #4a3831;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #4a3831;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.btn {
    background-color: #4a3831;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #6a5249;
}

.contact-info h3 {
    margin-bottom: 15px;
    color: #f4f4f4;
}

.contact-info ul {
    list-style: none;
}

.contact-info ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info ul li i {
    margin-right: 10px;
}

.social-links {
    margin-top: 20px;
    position: relative;
    bottom: -18rem;
}

.social-links a {
    color: white;
    margin-right: 15px;
    text-decoration: none;
    font-size: 24px;
}


.footer-section:last-child{
    text-align: center;
}

@media (max-width: 904px){
    .social-links {
        bottom: -15rem;
    }
}

#mensaje-enviado {
    display: none;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-around;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.social-links svg {
    stroke: white;
    transition: stroke 0.3s ease;
}

.social-links a:hover svg {
    stroke: #f0f0f0;
}

@media (max-width: 1024px){
    .footer-section:last-child{
        text-align: left;
    }
}


@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
    .social-links {
        bottom: 0;
    }

    .footer-section:last-child{
        text-align: center;
    }
}