* {
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    background: #f4f7f6;
    display: flex;
    flex-direction: column;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;

    background: url('7.png') repeat;
    background-size: 700px;

    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
	filter: blur(1px);
}

h1, h2 {
    font-weight: 700;
	color: #4682B4;
    margin-bottom: 12px;
}

p {
    font-weight: 400;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.phone p {
    color: #fff;
    text-decoration: none;
}

.phone a {
    color: #fff;
    text-decoration: none;
}

a.phone {
    color: #fff;
    text-decoration: none;
}

.header {
    background: linear-gradient(135deg, #e0f7fa, #ADD8E6);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px; 
    width: 930px;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.nav-list {
    list-style: none;
    display: flex;
	gap: 60px;
}

.nav-list a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    position: relative;
    transition: 0.3s;
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s;
}

.nav-list a:hover::after {
    width: 100%;
}

.call-button a {
    background-color: #fff;
    color: #4682B4;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.call-button a:hover {
    background-color: #e0f7fa;
}

.hero-bg {
    height: 50px;
    background: url('img/bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    border-radius: 10px;
    text-align: center;
}

.hero-overlay h1 {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 10px;
}

.main-card {
    background: #fff;
    max-width: 900px;
    margin: 20px auto 20px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.main-card-contacts {
    background: #fff;
    max-width: 900px;
    margin: 20px auto 200px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

section {
    margin-bottom: 35px;
}

.cooperation {
    background: #e0f7fa;
    padding: 15px;
    border-radius: 8px;
}

.rules ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: none; /* ВАЖНО */
}

.rules li {
    padding-left: 10px;
    margin-bottom: 8px;
    position: relative;
}

.rules {
    background: #e0f7fa;
    padding: 25px;
    border-radius: 12px;
}

.footer {
    background: linear-gradient(135deg, #e0f7fa, #ADD8E6);
    color: #fff;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}


.washing {
    background: #e0f7fa;
	    padding: 30px;
    border-radius: 8px;
	}

.contacts h2 {
    text-align: center;
    margin-bottom: 25px;
}

.contacts-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.contacts-info {
    flex: 1;
}

.contacts-info h3 {
    margin-bottom: 15px;
}

.contacts-info p {
    margin-bottom: 12px;
}

.contacts-info a {
    color: #4682B4;
    text-decoration: none;
    font-weight: 600;
}

.contacts-info a:hover {
    text-decoration: underline;
}

.contacts-description {
    margin-top: 20px;
    opacity: 0.8;
	    background: #e0f7fa;
    border-radius: 10px;
	padding: 10px;
}

.washing h3 {
    margin-bottom: 10px;
}

.rules h3 {
    margin-bottom: 10px;
	margin-left: 10px;
}

.contacts-map {
    flex: 1;
    min-height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.day-off {
    color: #4682B4;
    font-weight: 600;
}

.price h2 {
    text-align: center;
    margin-bottom: 30px;
}

.price-category {
    margin-bottom: 30px;
}

.price-category h3 {
    margin-bottom: 10px;
    padding: 10px;
    background: #e0f7fa;
    border-radius: 8px;
}

.price-item {
    display: grid;
    grid-template-columns: 1fr 100px 120px;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    align-items: center;
    transition: 0.3s;
}

.price-item:hover {
    background: #e0f7fa;
}

.price-value {
    text-align: right;
    font-weight: 700;
    color: #4682B4;
    transition: 0.3s;
}

.price-item:hover .price-value {
    color: #4682B4;
    transform: scale(1.05);
}

main {
    flex: 1;
}

.advantages {
    text-align: center;
}

.advantages-grid {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.adv {
    background: #e0f7fa;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 200px;
}

.advimg img {
    max-width: 100%;
    height: auto;
    display: block;
}

.adv h3 {
    font-size: 28px;
}

.about-page h2 {
    text-align: center;
    margin-bottom: 30px;
}

.advice-block,
.service-block,
.notes-block {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.advice-block {
    background: #e0f7fa;
}

.service-block {
    background: #e0f7fa;
}

.notes-block {
    background: #e0f7fa;
}

.about-page h3 {
    margin-bottom: 15px;
}

.service-block ul,
.notes-block ul {
    padding-left: 20px;
}

.service-block li,
.notes-block li {
    margin-bottom: 8px;
}

.service-note {
    margin-top: 15px;
    font-style: italic;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.before-after h2 {
    text-align: center;
    margin-bottom: 15px;
}

.ba-description {
    text-align: center;
    margin: 0 auto 30px;
    padding: 15px;
    background: #e0f7fa;
    border-radius: 10px;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ba-item {
    background: #e0f7fa;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.ba-item:hover {
    transform: translateY(-5px);
}

.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.ba-images img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 6px;
}

.ba-text {
    text-align: center;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 1000;
	color: #4682B4;
}

.ba-images img:first-child {
    border-right: 2px solid #fff;
}

.service-flex {
    display: flex;
    gap: 20px;
    align-items: center;
}

.service-text {
    flex: 1;
}

.service-image {
    display: flex;
    justify-content: center;
}

.service-image img {
    max-width: 100%;
    border-radius: 10px;
}

.notes-flex {
    display: flex;
    gap: 20px;
    align-items: center;
}

.notes-text {
    flex: 1;
}

.notes-image {
    display: flex;
    justify-content: center;
}

.notes-image img {
    max-width: 100%;
    border-radius: 10px;
}

.rules-flex {
    display: flex;
    gap: 20px;
    align-items: center;
}

.rules-text {
    flex: 1;
}

.rules-image {
    display: flex;
    justify-content: center;
}

.rules-image img {
    max-width: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .rules-flex {
        flex-direction: column;
        text-align: center;
    }

html {
    scroll-behavior: smooth;
}

.price-item {
    display: grid;
    grid-template-columns: 1fr 80px 100px 1.2fr;
    gap: 10px;
    align-items: center;
}

.price-extra {
    font-size: 13px;
    opacity: 0.8;
}

.header-container {
    width: 930px;
}

.nav-list a::after {
    background-color: #fff;
}

.nav-list a,
.nav-list a:visited {
    color: #fff;
}
.header {
    position: relative;
    z-index: 10;
}

.nav {
    position: relative;
    z-index: 20;
}

.main-card {
    position: relative;
    z-index: 1;
}

.main-card {
    margin: 10px 10px 20px;
    padding: 15px;
    border-radius: 10px;
}



@media (max-width: 768px) {

    body::before {
        display: none;
    }

    .header-container {
        flex-direction: column;
        align-items: center;
        height: auto;
        width: 100%;
        padding: 5px 0;
        gap: 5px;
    }

    .logo img {
        max-height: 35px;
    }

    .nav {
        width: 100%;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin: 10px 0;
		padding-left: 0px;
    }

    .nav-list a {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 15px;
        padding: 6px 0;
    }

    .call-button a {
        padding: 6px 14px;
        font-size: 13px;
    }

    .hero-bg {
        height: 100px;
    }

    .hero-overlay h1 {
        font-size: 20px;
    }

    .main-card,
    .main-card-contacts {
        margin: 10px;
        padding: 15px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 15px;
    }

    .advantages-grid {
        flex-direction: column;
        align-items: center;
    }

    .adv {
        max-width: 260px;
        width: 100%;
        padding: 15px;
    }

    .advimg img {
        width: 100px;
        height: auto;
        margin: 0 auto 10px;
        display: block;
    }

    .service-flex,
    .notes-flex,
    .rules-flex,
    .contacts-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .contacts-map {
        height: 300px;
    }

    .ba-grid {
        grid-template-columns: 1fr;
    }

    .price-item {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .price-value {
        text-align: left;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}
