:root {

    --primary:#71e42f;
    --white:white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: var(--dark-light);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #333;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #333;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 5px;
    color: var(--primary);
}

.working-hours {
    margin-top: 30px;
}

.hours-table {
    width: 100%;
    margin-top: 15px;
    border-collapse: collapse;
}

.hours-table td {
    padding: 10px;
    border-bottom: 1px solid #333;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--dark-light);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #333;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}