/* Общие сбросы стилей и базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Стили для шапки */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2a7fff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2a7fff;
}

.header-contacts {
    text-align: right;
}

.phone {
    display: block;
    font-weight: bold;
    color: #2a7fff;
    text-decoration: none;
    font-size: 1.1rem;
}

.email {
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
}

/* Интерактивное бургер-меню */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-top: 15px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .header-contacts {
        text-align: center;
        margin-top: 10px;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Стили для главной страницы (hero-секция) */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 0;
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button, .submit-btn {
    background: #2a7fff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block !important;
    position: relative;
    overflow: hidden;
    height: 48px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.cta-button:hover, .submit-btn:hover {
    background: #1c5fc4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 127, 255, 0.3);
}

.cta-button:active, .submit-btn:active {
    transform: translateY(0);
}

/* Стили для карточек преимуществ */
.advantages {
    padding: 80px 0;
    background: white;
}

.advantages h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #333;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;

}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.advantage-card svg {
    margin-bottom: 20px;
    flex-shrink: 0;
    display: table;
  margin: 0 auto;
}

.advantage-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* О компании */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
}

.about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Интерактивные табы услуг */
.services-tabs {
    padding: 80px 0;
    background: white;
}

.services-tabs h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #333;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.tab-btn {
    padding: 12px 24px;
    background: #f0f0f0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 500;
}

.tab-btn.active {
    background: #2a7fff;
    color: white;
}

.tab-btn:hover:not(.active) {
    background: #e0e0e0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tab-text {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tab-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    flex-shrink: 0;
}

.tab-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
    flex-shrink: 0;
}

.tab-text ul {
    margin-bottom: 30px;
    padding-left: 20px;
    flex: 1;
}

.tab-text li {
    margin-bottom: 10px;
    color: #555;
}

.tab-text .cta-button {
    align-self: flex-start;
    margin-top: auto;
    flex-shrink: 0;
}

.tab-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Акции с таймером */
.promotion {
    padding: 80px 0;
    background: linear-gradient(135deg, #2a7fff, #1c5fc4);
    color: white;
    text-align: center;
}

.promotion h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.promotion p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Таймер обратного отсчета */
.countdown-timer {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.time-unit {
    text-align: center;
    background: rgba(255,255,255,0.2);
    padding: 20px 15px;
    border-radius: 10px;
    min-width: 80px;
    backdrop-filter: blur(10px);
}

.time-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.time-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Интерактивные аккордеоны FAQ */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #333;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background: white;
}

.faq-question {
    padding: 20px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: background 0.3s;
    font-size: 1.1rem;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2a7fff;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    line-height: 1.7;
    color: #555;
}

/* Слайдер отзывов */
.reviews {
    padding: 80px 0;
    background: white;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #333;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    height: auto;
    margin-bottom: 30px;
}

.review-slide {
    display: none;
}

.review-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.review-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.review-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author strong {
    display: block;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.review-author span {
    color: #666;
    font-size: 0.9rem;
}

.review-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.slider-btn {
    background: #2a7fff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1rem;
}

.slider-btn:hover {
    background: #1c5fc4;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #2a7fff;
}

/* Статистика */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #2a7fff, #1c5fc4);
    color: white;
    text-align: center;
}

.stats h2 {
    margin-bottom: 50px;
    font-size: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Стили для страницы услуг */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ОСНОВНОЕ ИСПРАВЛЕНИЕ: Выравнивание кнопок в карточках услуг */
.services-grid {
    padding: 60px 0;
    background: #f8f9fa;
}

.services-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    min-height: 650px;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    text-align: center;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
    flex-shrink: 0;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    flex-shrink: 0;
}

.service-card ul {
    margin-bottom: 25px;
    padding-left: 20px;
    flex: 1;
}

.service-card li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.5;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
    gap: 15px;
}

.service-price span {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2a7fff;
    white-space: nowrap;
}

.service-price .cta-button {
    flex: 1;
    min-width: 140px;
    height: 48px;
    margin: 0;
}

/* Процесс работы */
.service-process {
    padding: 80px 0;
    background: white;
}

.service-process h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #333;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.process-step {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2a7fff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.process-step h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Гарантии */
.guarantee {
    padding: 80px 0;
    background: #f8f9fa;
}

.guarantee h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #333;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.guarantee-text h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #333;
}

.guarantee-text ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.guarantee-text li {
    margin-bottom: 12px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.5;
}

.guarantee-text p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

.guarantee-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Стили для страницы контактов */
.contact-info {
    padding: 60px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-details h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #333;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s;
}

.contact-item:hover {
    background: #e9ecef;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: #2a7fff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 8px;
    color: #333;
    font-size: 1.2rem;
}

.contact-text p {
    color: #666;
    line-height: 1.6;
}

.contact-text a {
    color: #2a7fff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: #1c5fc4;
}

/* Форма обратной связи */
.contact-form-container {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form-container h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #333;
    text-align: center;
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2a7fff;
    box-shadow: 0 0 0 2px rgba(42, 127, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .submit-btn {
    margin-top: auto;
    flex-shrink: 0;
}

/* Карта */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #333;
}

.interactive-map {
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.map-placeholder {
    text-align: center;
    padding: 40px;
}

.map-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.map-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.map-info .cta-button {
    margin-top: 15px;
}

/* Дополнительные контакты */
.additional-contacts {
    padding: 80px 0;
    background: white;
}

.additional-contacts h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #333;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-method {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.contact-method h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-method p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method .cta-button {
    flex-shrink: 0;
}

/* Подвал сайта */
footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #2a7fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #2a7fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
}

/* Кнопка "Наверх" */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #2a7fff;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 1000;
    display: none;
}

.scroll-to-top:hover {
    background: #1c5fc4;
    transform: translateY(-2px);
}

/* Стилизованные уведомления */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    background: white;
    border-left: 4px solid #2a7fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    animation: slideIn 0.3s ease;
    max-width: 400px;
}

.notification.success {
    border-left-color: #4CAF50;
}

.notification.error {
    border-left-color: #f44336;
}

.notification.info {
    border-left-color: #2196F3;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification.fade-out {
    animation: slideOut 0.3s ease forwards;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* Анимации при скролле */
.advantage-card, .service-card, .review-slide, .process-step, .contact-method, .stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .tab-content-inner,
    .review-content,
    .guarantee-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tab-image,
    .review-image,
    .guarantee-image {
        order: -1;
    }
    
    .service-card {
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .advantages-grid,
    .services-grid .container,
    .stats-grid,
    .process-steps,
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 15px 10px;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .review-content,
    .contact-item {
        padding: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
        min-height: 550px;
    }
    
    .service-price {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .service-price span {
        text-align: center;
    }
    
    .service-price .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .advantages, .about, .services-tabs, .promotion, .faq, .reviews, .stats,
    .service-process, .guarantee, .contact-info, .map-section, .additional-contacts {
        padding: 60px 0;
    }
    
    .tab-content-inner,
    .review-content,
    .guarantee-content,
    .contact-grid {
        gap: 20px;
    }
    
    .contact-form-container {
        padding: 20px 15px;
    }
    
    .service-card {
        min-height: 500px;
    }
}