
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    padding-top: 70px;
    background-image: url('/assets/img/1500900.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8fafc;
}
/* Section spacing */
section {
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
section:first-of-type {
    background: linear-gradient(rgba(30, 64, 175, 0.85), rgba(30, 64, 175, 0.85));
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    color: white;
    min-height: 320px;        /* или больше, по вкусу */
    display: flex;
    align-items: center;

    padding: 5% 5%;          /* сверху/снизу 5%, слева/справа 7% */
}


/* Pricing cards */
#pricing .grid > div {
    background-color: white;
    border: 2px solid #1e40af;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#pricing .grid > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

#pricing a {
    background-color: #1e40af !important;
    border: 2px solid white;
    color: white !important;
    transition: all 0.3s ease;
}

#pricing a:hover {
    background-color: white !important;
    color: #1e40af !important;
    border-color: #1e40af;
}
/* Button hover effects */
a[href*="wa.me"]:hover {
    background-color: #128C7E !important;
}

a[href*="t.me"]:hover {
    background-color: #0077B5 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    section {
        padding: 2rem 0;
    }
}
footer {
    background-color: rgba(2, 6, 23, 0.8); /* 0.8 = 80% непрозрачности */
    color: #e5e7eb;
    padding: 24px 0;
    font-size: 13px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}

.footer-left {
    flex: 1 1 260px;
}

.footer-right {
    flex: 1 1 260px;
}

.footer-right h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #f9fafb;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-links a:hover {
    color: #e5e7eb;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
}
.main-wrapper {
    max-width: 80%;          /* 80% ширины окна, можно 1100px, если хочешь фикс */
    margin: 0 auto;
}
/* Контакты + карта в две колонки */
#contacts .section-content {
    padding: 0 5%;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: flex-start;
}

.contacts-info p {
    margin-bottom: 10px;
}

.contacts-map h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

/* На мобильных — одна колонка */
@media (max-width: 768px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    #contacts .section-content {
        padding: 0 5%;
    }
}

