/* Логотип в шапке */
header img {
    transition: transform 0.3s ease;
}

header img:hover {
    transform: scale(1.05); /* Эффект при наведении */
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    header img {
        height: 40px !important;
    }
    header h1 {
        font-size: 1.5rem;
    }
}
:root {
    --primary: #0d6efd;
    --primary-dark: #0b5ed7;
}

body {
    font-family: "Times New Roman", Times, serif !important;
}

/* Для заголовков можно оставить более жирное начертание */
h1, h2, h3, h4, h5, h6 {
    font-family: "Times New Roman", Times, serif;
    font-weight: bold;
}

/* Особые стили для кнопок и специальных элементов */
.btn, .navbar-nav {
    font-family: "Times New Roman", Times, serif;
}
/* Логотип в шапке */
header img {
    transition: transform 0.3s ease;
}

header img:hover {
    transform: scale(1.05); /* Эффект при наведении */
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    header img {
        height: 40px !important;
    }
    header h1 {
        font-size: 1.5rem;
    }
}
.hero-section {
    background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), url('../images/bg-pattern.png');
}

.card {
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#contact-form input,
#contact-form textarea {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    color: white;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

#contact-form input:focus,
#contact-form textarea:focus {
    background-color: rgba(255,255,255,0.2);
    color: white;
    border-color: white;
    box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
}

iframe {
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.badge {
    font-weight: 500;
}