* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #e0e4f0;
}

/* Стили для навигации */
.navbar {
    background-color: #0f1119;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    flex-wrap: wrap;
}

.logo a {
    color: #5dade2;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.logo a:hover {
    color: #8bb4d0;
}

/* Стили для телефона */
.phone-container {
    margin-left: auto;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #4a6d8c;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    white-space: nowrap;
}

.phone-link:hover {
    background-color: #5dade2;
    transform: scale(1.02);
}

.phone-icon {
    font-size: 1.2rem;
}

.phone-number {
    font-size: 1rem;
}

/* Бургер-меню */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 100;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 3px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Меню для десктопа */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #d4e1ed;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
    border-radius: 4px;
    display: inline-block;
}

.nav-link:hover {
    background-color: #4a6d8c;
    color: white;
}

.nav-link.active {
    background-color: #4a6d8c;
    color: white;
}

/* Основной контент */
main {
    flex: 1;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Стили для подвала */
footer {
    background-color: #0f1119;
    color: #d4e1ed;
    text-align: center;
    padding: 1.5rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo h3 {
    color: #5dade2;
    margin-bottom: 5px;
    font-size: 18px;
}

.footer-logo p {
    font-size: 12px;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d4e1ed;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #5dade2;
}

.copyright {
    font-size: 11px;
    opacity: 0.6;
}

/* Заголовки */
h1 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 2rem;
}

h2 {
    color: #ffffff;
    margin: 1.5rem 0 0.5rem 0;
}

/* Ссылки */
a {
    color: #5dade2;
    text-decoration: none;
}

a:hover {
    color: #8bb4d0;
}

/* Кнопки */
button, .btn {
    background-color: #4a6d8c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

button:hover, .btn:hover {
    background-color: #5dade2;
    transform: translateY(-2px);
}

/* Hero секция */
.hero {
    background: linear-gradient(135deg, #1a252f 0%, #4a6d8c 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 50px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: white;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero-btn {
    display: inline-block;
    background: white;
    color: #4a6d8c;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    color: #1a252f;
}

/* Переключатель вкладок */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #4a6d8c;
    color: white;
    box-shadow: 0 5px 15px rgba(74,109,140,0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dumpster-section {
    margin-bottom: 60px;
    background: #21262d;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.dumpster-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    color: #a0a8c0;
    margin-bottom: 40px;
    font-size: 16px;
}

.dumpster-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.dumpster-card {
    background: #21262d;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
    border: 1px solid #30363d;
}

.dumpster-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    background: #2d3348;
}

.dumpster-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #1a252f;
}

.dumpster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.dumpster-card:hover .dumpster-img {
    transform: scale(1.05);
}

.dumpster-info {
    padding: 20px;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.price-header h3 {
    font-size: 20px;
    color: #ffffff;
    margin: 0;
    text-align: left;
    flex: 1;
}

.price-badge {
    display: inline-block;
    background: #4a6d8c;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(74,109,140,0.3);
    white-space: nowrap;
}

.dumpster-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dumpster-features li {
    padding: 8px 0;
    border-bottom: 1px solid #30363d;
    color: #a0a8c0;
    font-size: 13px;
}

.dumpster-features li:last-child {
    border-bottom: none;
}

.dumpster-note {
    margin-top: 30px;
    padding: 15px;
    background: #21262d;
    border-left: 4px solid #4a6d8c;
    border-radius: 8px;
}

.dumpster-note p {
    margin: 0;
    color: #a0a8c0;
    font-size: 14px;
}

.order-button-wrapper {
    text-align: center;
    margin: 40px 0 50px 0;
}

.main-order-btn {
    display: inline-block;
    background: #4a6d8c;
    color: white;
    font-size: 22px;
    font-weight: bold;
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(74,109,140,0.4);
}

.main-order-btn:hover {
    background: #5dade2;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74,109,140,0.5);
}

.order-note {
    margin-top: 12px;
    color: #a0a8c0;
    font-size: 14px;
}

.advantages {
    margin-top: 20px;
    margin-bottom: 40px;
}

.advantages h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #ffffff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.advantage {
    text-align: center;
    padding: 25px;
    background: #21262d;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s;
    border: 1px solid #30363d;
}

.advantage:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    background: #2d3348;
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.advantage h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.advantage p {
    font-size: 14px;
    color: #a0a8c0;
    line-height: 1.5;
}

/* Страница контактов */
.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.contacts-info {
    background: #21262d;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.info-content {
    padding: 30px;
}

.contacts-info h1 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 10px;
}

.contacts-info > p {
    color: #a0a8c0;
    margin-bottom: 30px;
    font-size: 16px;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    font-size: 28px;
    min-width: 45px;
}

.info-text h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 5px;
}

.info-text p {
    color: #a0a8c0;
    font-size: 15px;
    line-height: 1.5;
}

.info-text a {
    color: #5dade2;
    text-decoration: none;
    font-size: 15px;
}

.info-text a:hover {
    color: #8bb4d0;
}

.info-text .small {
    font-size: 13px;
    color: #718096;
    margin-top: 5px;
}

.contacts-form {
    display: flex;
    align-items: center;
}

.form-card {
    background: #21262d;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    width: 100%;
}

.form-card h2 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.form-card > p {
    color: #a0a8c0;
    margin-bottom: 25px;
    font-size: 14px;
    text-align: center;
}

.callback-form .form-group {
    margin-bottom: 20px;
}

.callback-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #e0e4f0;
    font-size: 14px;
}

.callback-form input,
.callback-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #30363d;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
    background: #0d1117;
    color: #ffffff;
}

.callback-form input:focus,
.callback-form select:focus {
    outline: none;
    border-color: #4a6d8c;
    box-shadow: 0 0 0 3px rgba(74,109,140,0.3);
}

.submit-btn {
    width: 100%;
    background: #4a6d8c;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 14px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #5dade2;
    transform: translateY(-2px);
}

.alert {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.alert.success {
    background: #1a3a2a;
    color: #6fbf8a;
    border-left: 4px solid #28a745;
}

.alert.error {
    background: #3a1a1a;
    color: #e06c75;
    border-left: 4px solid #dc3545;
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background-color: #21262d;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    cursor: pointer;
}

.close:hover {
    color: #fff;
}

.modal-content h2 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.modal-content p {
    color: #a0a8c0;
    margin-bottom: 1.5rem;
}

.modal-content .form-group {
    margin-bottom: 1rem;
}

.modal-content label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #e0e4f0;
}

.modal-content input,
.modal-content select {
    width: 100%;
    padding: 10px;
    border: 1px solid #30363d;
    border-radius: 8px;
    background-color: #0d1117;
    color: #ffffff;
}

.modal-content .submit-btn {
    background-color: #4a6d8c;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
}

/* Cookie уведомление */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f1119;
    color: white;
    padding: 15px 20px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
}

.cookie-text strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.cookie-text p {
    font-size: 12px;
    opacity: 0.8;
}

.cookie-text a {
    color: #5dade2;
}

.cookie-btn {
    background: #4a6d8c;
    color: white;
    border: none;
    padding: 8px 25px;
    border-radius: 50px;
    cursor: pointer;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        position: relative;
    }
    
    .burger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        width: 70%;
        height: 100%;
        background-color: #0f1119;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
        z-index: 99;
        margin: 0;
        padding: 80px 20px;
        gap: 20px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 15px;
        font-size: 18px;
    }
    
    .phone-number {
        font-size: 0.9rem;
    }
    
    .phone-link {
        padding: 6px 12px;
    }
    
    .phone-icon {
        font-size: 1rem;
    }
    
    main {
        padding: 1rem;
    }
    
    .hero {
        padding: 40px 20px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .services-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .dumpster-section {
        padding: 20px;
    }
    
    .dumpster-grid {
        grid-template-columns: 1fr;
    }
    
    .dumpster-section h2 {
        font-size: 24px;
    }
    
    .dumpster-image {
        height: 160px;
    }
    
    .price-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-badge {
        align-self: flex-start;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .main-order-btn {
        font-size: 18px;
        padding: 14px 30px;
    }
    
    .contacts-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-content {
        padding: 20px;
    }
    
    .contacts-info h1 {
        font-size: 28px;
    }
    
    .form-card {
        padding: 25px;
    }
    
    .form-card h2 {
        font-size: 24px;
    }
    
    .info-item {
        gap: 12px;
    }
    
    .info-icon {
        font-size: 24px;
        min-width: 35px;
    }
    
    .callback-form input,
    .callback-form select {
        padding: 10px 12px;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 1.1rem;
    }
    
    .phone-number {
        font-size: 0.8rem;
    }
    
    .phone-link {
        padding: 5px 10px;
    }
    
    .nav-menu {
        width: 85%;
    }
}

/* Страница "О нас" */
.about-content {
    background: #21262d;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.about-content h1 {
    text-align: center;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text ul {
    margin: 20px 0 20px 30px;
}

.about-text li {
    margin: 10px 0;
}

/* Страница "Услуги" */
.services-page {
    background: #21262d;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.services-page h1 {
    text-align: center;
    margin-bottom: 30px;
}

/* Юридические страницы */
.legal-page {
    max-width: 900px;
    margin: 40px auto;
}

.legal-container {
    background: #21262d;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.legal-page h1 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 10px;
}

.legal-content h2 {
    color: #ffffff;
    font-size: 22px;
    margin: 25px 0 15px 0;
}

.legal-content p {
    color: #a0a8c0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 10px 0 20px 25px;
    color: #a0a8c0;
    line-height: 1.6;
}

.legal-content li {
    margin: 8px 0;
}

.consent-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #30363d;
    color: #718096;
    font-size: 14px;
}
/* Увеличение отступов по высоте для мобильных телефонов */
@media (max-width: 768px) {
    /* Увеличиваем вертикальные отступы в секции dumpster */
    .dumpster-section {
        padding: 20px 15px !important;
        margin-bottom: 30px !important;
    }
    
    /* Увеличиваем отступы между карточками по вертикали */
    .dumpster-grid {
        gap: 20px !important;
        margin-top: 20px !important;
    }
    
    /* Увеличиваем внутренние вертикальные отступы карточек */
    .dumpster-info {
        padding: 15px !important;
    }
    
    /* Увеличиваем отступы в шапке карточки */
    .price-header {
        margin-bottom: 12px !important;
        gap: 8px !important;
    }
    
    /* Увеличиваем отступы в списке характеристик */
    .dumpster-features li {
        padding: 8px 0 !important;
    }
    
    /* Увеличиваем отступы в примечании */
    .dumpster-note {
        margin-top: 20px !important;
        padding: 12px 15px !important;
    }
    
    /* Увеличиваем отступы в секции преимуществ */
    .advantages {
        margin-top: 20px !important;
        margin-bottom: 30px !important;
    }
    
    .advantages h2 {
        margin-bottom: 25px !important;
    }
    
    .advantage {
        padding: 20px !important;
    }
    
    .advantage-icon {
        margin-bottom: 12px !important;
    }
    
    .advantage h3 {
        margin-bottom: 8px !important;
    }
    
    /* Увеличиваем отступы в hero секции */
    .hero {
        padding: 40px 20px !important;
        margin-bottom: 35px !important;
    }
    
    .hero h1 {
        margin-bottom: 12px !important;
    }
    
    .hero p {
        margin-bottom: 25px !important;
    }
    
    /* Увеличиваем отступы в табах */
    .services-tabs {
        margin-bottom: 25px !important;
    }
    
    /* Увеличиваем отступы в контактах */
    .contacts-wrapper {
        margin: 25px 0 !important;
        gap: 25px !important;
    }
    
    .info-content {
        padding: 20px !important;
    }
    
    .info-block {
        gap: 20px !important;
    }
    
    .form-card {
        padding: 25px !important;
    }
    
    .callback-form .form-group {
        margin-bottom: 15px !important;
    }
    
    .submit-btn {
        margin-top: 10px !important;
        padding: 14px !important;
    }
    
    /* Увеличиваем отступы в галерее работ */
    .works-gallery {
        gap: 20px !important;
        margin-top: 20px !important;
    }
    
    .work-info {
        padding: 12px !important;
    }
    
    .work-info h3 {
        margin-bottom: 8px !important;
    }
    
    /* Увеличиваем отступы в модальном окне */
    .modal-content {
        padding: 20px !important;
    }
    
    .modal-content .form-group {
        margin-bottom: 15px !important;
    }
    
    .modal-content .submit-btn {
        margin-top: 15px !important;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .dumpster-section {
        padding: 15px 12px !important;
    }
    
    .dumpster-grid {
        gap: 15px !important;
    }
    
    .dumpster-info {
        padding: 12px !important;
    }
    
    .dumpster-features li {
        padding: 6px 0 !important;
    }
    
    .dumpster-note {
        padding: 10px 12px !important;
    }
    
    .advantage {
        padding: 15px !important;
    }
    
    .hero {
        padding: 30px 15px !important;
    }
    
    .form-card {
        padding: 20px !important;
    }
    
    .info-content {
        padding: 15px !important;
    }
}