/* Contact Page Styles */

.contact-section {
    padding: 60px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-main h2 {
    text-align: left;
    margin-bottom: 20px;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item .title {
    color: var(--text-color);
    font-style: italic;
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item h3 {
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 40px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1877f2;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.8;
}

.contact-image {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.contact-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.credentials {
    text-align: left;
    margin-top: 30px;
}

.credentials h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.credentials ul {
    list-style: none;
    padding: 0;
}

.credentials li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.credentials li:last-child {
    border-bottom: none;
}

.credentials li::before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
