/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

.contact-page {
    max-width: 900px;
    margin: 20px auto;
    background: #fff;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    background-color: #fff;

}

.contact-header h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 1rem;
    color: #555;
}

.contact-info, .contact-social, .contact-form {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-info h2, .contact-social h2, .contact-form h2 {
    font-size: 1.8rem;
    color: #444;
    margin-bottom: 20px;
    border-bottom: 3px solid #0066cc;
    display: inline-block;
    padding-bottom: 8px;
}

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

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.4;
}

.contact-info li .icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    color: #0066cc;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info li strong {
    font-weight: bold;
    margin-right: 5px;
    color: #333;
}

.contact-info li a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info li a:hover {
    color: #004a99;
    text-decoration: underline;
}

.contact-social .social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.contact-social .social-link {
    display: flex;
    align-items: center;
    background: #f7f7f7;
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-social .social-link .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.contact-social .social-link.instagram {
    background: #f09433;
    background: -webkit-linear-gradient(to right, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.contact-social .social-link.instagram:hover {
    opacity: 0.8;
}

.contact-social .social-link.telegram {
    background-color: #0088cc;
    color: white;
}

.contact-social .social-link.telegram:hover {
    background-color: #005f8a;
}

.contact-social .social-link.whatsapp {
    background-color: #25D366;
    color: white;
}

.contact-social .social-link.whatsapp:hover {
    background-color: #1DA955;
}

/* Contact Form */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.contact-form label {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #555;
}

.contact-form input, .contact-form textarea {
    font-size: 1rem;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #0066cc;
    outline: none;
}

.contact-form .submit-btn {
    padding: 10px 20px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.contact-form .submit-btn:hover {
    background-color: #004a99;
}

.icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #0066cc;
    text-align: center;
    font-size: 1.5rem;
    margin-right: 10px;
}
