.contact {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px auto;
    justify-content: center;
}

.contact-info,
.contact-form {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 500px;
}

.contact-info h3,
.contact-form h3 {
    margin-top: 0;
}

.contact-info ul {
    padding: 0;
    list-style: none;
}

.contact-info li {
    margin-bottom: 5px;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
}

/* new */

.contact-info.full-width {
    width: 100%;
    max-width: 850px;
    margin: 40px auto;
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    direction: rtl;
    text-align: right;
    font-size: 17px;
    line-height: 1.6;
    color: #222;
}

.contact-info.full-width h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    color: #007bff;
    text-align: center;
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 25px;
    margin-top: 15px;
}

.social-links li a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.social-links li a:hover {
    color: #0056b3;
    border-color: #0056b3;
}

a {
    all: unset;
    cursor: pointer;
}

.footer a:hover {
    color: #1b80f2;
}

.additional-description {
    font-size: 14px;
}


.hero {
    background: #eee;
    text-align: center;
    padding: 20px 0 20px 0;
}

.hero h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 20px;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.5;
    }
}