
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: -30px; 
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.contact-card h2 {
    color: var(--accent-color);
    font-size: 22px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-block);
    padding-bottom: 10px;
    display: inline-block;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.info-row i {
    font-size: 24px;
    color: var(--accent-color);
    background: var(--color-block);
    padding: 10px;
    border-radius: 12px;
    flex-shrink: 0;
}

.info-row div {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
}

.info-row strong {
    display: block;
    margin-bottom: 3px;
}

.map-section {
    margin-top: 50px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.map-section h2 {
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-size: 28px;
}

.map-container {
    border-radius: 30px;
    overflow: hidden; 
    box-shadow: var(--shadow);
    border: 8px solid white; 
}

.map-container iframe {
    display: block;
    filter: grayscale(0.2) contrast(1.1); 
}

.feedback-section {
    margin: 100px 0 80px;
    padding: 0 20px;
}

.feedback-form {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feedback-form select,
.feedback-form input,
.feedback-form textarea {
    font-style: italic;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 25px;
    padding-left: 25px;
    color: #555;
    background-color: var(--color-backround);
    border: none;
    border-radius: 54px;
    box-shadow: var(--shadow);
    height: 76px;
    appearance: none;
}

.feedback-form textarea {
    height: 180px;
    padding-top: 22px;
    border-radius: 30px;
    resize: vertical;
}

.feedback-form select {
    padding-right: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%236c5ce7' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 12.753 4.86a.5.5 0 0 0-.753-.658L8 9.5 3.247 4.202a.5.5 0 0 0-.753.658L7.247 11.14z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.feedback-form button {
    align-self: center;
    background-color: var(--color-backround);
    width: 337px;
    height: 68px;
    box-shadow: var(--shadow);
    border-radius: 32px;
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.1s ease-out, background-color 0.1s ease-out;
    margin-top: 10px;
}