body {
    margin: 0;
    font-family: 'PT Sans', Arial, sans-serif;
    background: #f6f6f6;
    color: #313131;
}
.main-header {
    background: #fff;
    border-bottom: 1.5px solid #eaeaea;
    padding: 0 0 0 0;
}
.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 18px;
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 18px;
}
.logo-box {
    display: inline-block;
    background: #ff4a78;
    border-radius: 8px;
    padding: 10px 28px 8px 28px;
    text-decoration: none;
    margin-right: 22px;
    box-shadow: 0 3px 14px rgba(245,55,95,0.05);
}
.logo-box span {
    font-family: 'PT Sans', Arial, sans-serif;
    font-size: 2.45rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    line-height: 1;
}
.header-phone {
    font-size: 1.52rem;
    color: #9b9b9b;
    font-weight: 400;
    min-width: 200px;
    text-align: right;
}
.header-phone a {
    color: #9b9b9b;
    text-decoration: none;
    transition: color .17s;
    font-weight: 600;
    letter-spacing: 1px;
}
.header-phone a:hover {
    color: #ff4a78;
}
.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 38px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-nav a {
    display: inline-block;
    padding: 10px 0 8px 0;
    color: #3c3c3c;
    font-size: 1.16rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2.2px solid transparent;
    transition: border-color .2s, color .2s;
}
.main-nav a:hover,
.main-nav a.active {
    border-bottom: 2.2px solid #ff4a78;
    color: #ff4a78;
}
@media (max-width: 900px) {
    .logo-box span {
        font-size: 1.5rem;
        padding: 0 9px;
    }
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding-top: 18px;
        padding-bottom: 10px;
    }
    .header-phone {
        font-size: 1.09rem;
        min-width: unset;
        text-align: left;
    }
    .main-nav ul {
        gap: 16px;
        font-size: 1rem;
    }
}
@media (max-width: 600px) {
    .main-header {
        padding-bottom: 0;
    }
    .header-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
    }
    .logo-box span {
        font-size: 1.09rem;
        padding: 0 4px;
    }
    .main-nav ul {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 1rem;
    }
}
.main-footer {
    background: #fff;
    color: #888;
    border-top: 1.5px solid #eaeaea;
    padding: 24px 0 14px 0;
    font-size: 1rem;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}
.footer-nav {
    display: flex;
    gap: 24px;
}
.footer-nav a {
    color: #888;
    text-decoration: none;
    font-size: 1.09rem;
    transition: color .17s;
    font-weight: 600;
}
.footer-nav a:hover {
    color: #ff4a78;
}
.footer-copy {
    flex: 1 1 auto;
    text-align: center;
    font-size: 0.97rem;
    color: #b3b3b3;
}
.footer-phone {
    font-size: 1.11rem;
    text-align: right;
    min-width: 170px;
}
.footer-phone a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color .17s;
    font-weight: 600;
}
.footer-phone a:hover {
    color: #ff4a78;
}
@media (max-width: 800px) {
    .footer-content {
        flex-direction: column;
        align-items: stretch;
        gap: 11px;
    }
    .footer-copy, .footer-phone {
        text-align: left;
    }
    .footer-phone {
        min-width: unset;
        font-size: 1rem;
    }
    .footer-nav {
        gap: 13px;
        font-size: 0.97rem;
    }
}
.hero-section {
    background: #fff;
    padding: 42px 0 36px 0;
    box-shadow: 0 2px 16px rgba(120,120,120,0.08);
}
.hero-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.hero-left {
    flex: 1 1 430px;
    min-width: 280px;
    max-width: 600px;
}
.hero-left h1 {
    font-size: 2.65rem;
    font-weight: 800;
    color: #3c3c3c;
    line-height: 1.07;
    margin-top: 0;
    margin-bottom: 28px;
}
.hero-subtitle {
    font-size: 1.47rem;
    color: #9b9b9b;
    margin-bottom: 0;
}
.hero-right {
    flex: 1 1 240px;
    min-width: 200px;
    max-width: 330px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.cta-btn {
    background: #0093c9;
    color: #fff;
    font-size: 2.1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 24px 38px;
    box-shadow: 0 2px 10px rgba(0,147,201,0.08);
    cursor: pointer;
    line-height: 1.1;
    transition: background .19s, box-shadow .17s;
    display: flex;
    align-items: center;
    gap: 16px;
}
.cta-btn:hover {
    background: #00b0f0;
    box-shadow: 0 4px 20px rgba(0,147,201,0.20);
}
.cta-icon {
    font-size: 2.6rem;
    margin-left: 8px;
    display: inline-block;
}

.main-gallery {
    background: #f8f8f8;
    padding: 28px 0 16px 0;
}
.gallery-flex {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.main-gallery-img {
    border-radius: 8px;
    object-fit: cover;
    background: #eaeaea;
    box-shadow: 0 1.5px 6px rgba(0,0,0,0.08);
    border: 1.3px solid #ededed;
    width: 200px;
    height: 120px;
}
.main-gallery-large {
    width: 320px;
    height: 180px;
}
@media (max-width: 900px) {
    .hero-flex {
        flex-direction: column;
        gap: 18px;
    }
    .hero-left, .hero-right {
        max-width: 100%;
        min-width: 0;
    }
    .main-gallery-img {
        width: 43vw;
        max-width: 210px;
        min-width: 120px;
        height: 80px;
    }
    .main-gallery-large {
        width: 96vw;
        max-width: 340px;
        height: 120px;
    }
    .gallery-flex {
        gap: 7px;
    }
}
@media (max-width: 600px) {
    .hero-section, .main-gallery, .why-section-light, .cta-banner-section {
        padding-left: 3px;
        padding-right: 3px;
    }
    .main-gallery-img {
        width: 95vw;
        max-width: 99vw;
        min-width: 90px;
        height: 19vw;
        min-height: 48px;
    }
    .main-gallery-large {
        width: 99vw;
        max-width: 99vw;
        height: 32vw;
        min-height: 66px;
    }
}

.why-section-light {
    background: #fff;
    padding: 30px 0 16px 0;
    box-shadow: 0 2px 12px rgba(120,120,120,0.04);
}
.why-section-light h2 {
    font-size: 1.32rem;
    font-weight: 700;
    margin-bottom: 13px;
    color: #0093c9;
}
.why-list-light {
    list-style: disc inside;
    font-size: 1.13rem;
    color: #4d4d4d;
    margin: 0;
    padding-left: 16px;
}
.why-list-light li {
    margin-bottom: 7px;
}

.cta-banner-section {
    background: #f8f8f8;
    padding: 22px 0 8px 0;
    margin-bottom: 0;
}
.cta-banner {
    font-size: 1.11rem;
    color: #3b3b3b;
    text-align: center;
    border-radius: 7px;
    padding: 11px 14px;
    margin: 0 auto;
    max-width: 580px;
    background: #e4f7fe;
    box-shadow: 0 1.5px 8px rgba(0,0,0,0.04);
}
.cta-banner a {
    color: #0093c9;
    text-decoration: underline;
    transition: color .18s;
    font-weight: 600;
}
.cta-banner a:hover {
    color: #ff4a78;
}
.site-mention {
    background: #fafbfc;
    padding: 18px 0 10px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #ededed;
}
.site-mention-inner {
    max-width: 640px;
    margin: 0 auto;
    color: #767676;
    font-size: 1.04rem;
    text-align: center;
    padding: 6px 12px;
    border-radius: 7px;
    background: #f4f6f8;
    box-shadow: 0 1px 7px rgba(80,80,80,0.03);
}
.site-mention a {
    color: #0093c9;
    text-decoration: underline;
    transition: color .17s;
    font-weight: 500;
}
.site-mention a:hover {
    color: #ff4a78;
}
.services-section-light {
    background: #fff;
    padding: 36px 0 24px 0;
}
.services-section-light h1 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 800;
    color: #3c3c3c;
}
.services-desc-light {
    font-size: 1.14rem;
    color: #888;
    margin-bottom: 30px;
    max-width: 750px;
}
.services-list-light {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    justify-content: flex-start;
}
.service-card-light {
    background: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 2px 9px rgba(180, 180, 180, 0.04);
    padding: 16px 15px 12px 15px;
    flex: 1 1 270px;
    min-width: 220px;
    max-width: 350px;
    text-align: left;
    color: #2d2d2d;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #ececec;
}
.service-card-light img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 7px;
    margin-bottom: 9px;
    background: #eee;
}
.service-card-light h2 {
    font-size: 1.07rem;
    color: #0093c9;
    margin: 0 0 8px 0;
    font-weight: 700;
}
.service-card-light p {
    font-size: 0.98rem;
    color: #434343;
    margin-bottom: 0;
}

.services-extra-light {
    background: #f8f8f8;
    padding: 24px 0 16px 0;
    border-top: 1px solid #eaeaea;
}
.services-extra-light h2 {
    font-size: 1.15rem;
    color: #0093c9;
    margin-bottom: 12px;
    font-weight: 700;
}
.services-extra-light ul {
    margin: 0 0 0 18px;
    padding: 0;
    font-size: 1.03rem;
    color: #5d5d5d;
    line-height: 1.7;
}
.services-extra-light li {
    margin-bottom: 5px;
}
@media (max-width: 900px) {
    .services-list-light {
        gap: 13px;
    }
    .service-card-light {
        min-width: 140px;
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .services-list-light {
        flex-direction: column;
        gap: 7px;
    }
    .service-card-light img {
        height: 70px;
    }
    .service-card-light {
        padding: 8px 5px 7px 5px;
    }
    .services-section-light {
        padding: 20px 0 12px 0;
    }
    .services-desc-light {
        font-size: 1rem;
        margin-bottom: 17px;
    }
    .services-extra-light {
        padding: 12px 0 8px 0;
    }
}
.projects-section-light {
    background: #fff;
    padding: 36px 0 24px 0;
}
.projects-section-light h1 {
    font-size: 1.38rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: #0093c9;
}
.projects-desc-light {
    font-size: 1.07rem;
    color: #666;
    margin-bottom: 26px;
    max-width: 780px;
}
.projects-list-light {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.project-card-light {
    background: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 2px 9px rgba(180, 180, 180, 0.04);
    padding: 18px 18px 14px 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 24px;
    border: 1px solid #ececec;
}
.project-info-light {
    flex: 1 1 250px;
    min-width: 180px;
    max-width: 370px;
}
.project-info-light h2 {
    font-size: 1.08rem;
    color: #ff4a78;
    margin: 0 0 7px 0;
    font-weight: 700;
}
.project-info-light p {
    font-size: 0.99rem;
    color: #434343;
    margin-bottom: 0;
}
.project-gallery-light {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.project-gallery-light img {
    width: 142px;
    height: 96px;
    object-fit: cover;
    border-radius: 7px;
    border: 1.2px solid #e4e4e4;
    background: #eee;
    box-shadow: 0 1px 4px rgba(180,180,180,0.04);
}

@media (max-width: 900px) {
    .project-card-light {
        flex-direction: column;
        gap: 10px;
        padding: 10px 5px 7px 5px;
    }
    .project-info-light, .project-gallery-light {
        max-width: 100%;
        min-width: 0;
    }
    .project-gallery-light img {
        width: 45vw;
        max-width: 150px;
        min-width: 80px;
        height: 62px;
    }
}
@media (max-width: 600px) {
    .projects-section-light {
        padding: 14px 0 8px 0;
    }
    .projects-list-light {
        gap: 14px;
    }
    .project-card-light {
        padding: 5px 2px 6px 2px;
    }
    .project-gallery-light {
        gap: 5px;
    }
    .project-gallery-light img {
        width: 98vw;
        max-width: 99vw;
        height: 18vw;
        min-height: 44px;
    }
}
.contacts-section-light {
    background: #fff;
    padding: 34px 0 18px 0;
}
.contacts-section-light h1 {
    font-size: 1.34rem;
    margin-bottom: 16px;
    font-weight: 800;
    color: #0093c9;
}
.contacts-flex-light {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.contacts-info-light {
    flex: 1 1 220px;
    min-width: 200px;
    max-width: 320px;
    background: #f7f7f7;
    border-radius: 8px;
    padding: 17px 15px;
    box-shadow: 0 2px 8px rgba(180,180,180,0.04);
    border: 1px solid #ececec;
}
.contacts-block-light {
    margin-bottom: 13px;
}
.contact-title-light {
    font-size: 1.01rem;
    color: #ff4a78;
    font-weight: 700;
    margin-bottom: 3px;
}
.contact-link-light {
    font-size: 1.09rem;
    color: #222;
    text-decoration: none;
    word-break: break-all;
}
.contact-link-light:hover {
    color: #0093c9;
}
.contacts-form-block-light {
    flex: 1 1 320px;
    min-width: 220px;
    max-width: 420px;
    background: #f7f7f7;
    border-radius: 8px;
    padding: 17px 15px;
    box-shadow: 0 2px 8px rgba(180,180,180,0.04);
    border: 1px solid #ececec;
}
.contacts-form-light {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.form-row-light input,
.form-row-light textarea {
    width: 100%;
    font-size: 1.07rem;
    border: 1.1px solid #ccd6de;
    border-radius: 7px;
    padding: 8px 10px;
    background: #fff;
    color: #1e2327;
    transition: border-color .16s;
    outline: none;
    resize: none;
}
.form-row-light input:focus,
.form-row-light textarea:focus {
    border-color: #ff4a78;
}
.contacts-form-light button.cta-btn {
    width: 100%;
    padding: 11px 0;
    font-size: 1.14rem;
}
.contacts-map-block-light {
    margin-top: 14px;
    border-radius: 8px;
    overflow: hidden;
}
.contacts-map-block-light iframe {
    border: none;
    width: 100%;
    min-height: 200px;
    border-radius: 8px;
}
@media (max-width: 900px) {
    .contacts-flex-light {
        flex-direction: column;
        gap: 14px;
    }
    .contacts-info-light,
    .contacts-form-block-light {
        max-width: 100%;
        padding: 11px 6px;
    }
}
@media (max-width: 500px) {
    .contacts-section-light {
        padding: 12px 0 7px 0;
    }
    .contacts-info-light,
    .contacts-form-block-light {
        padding: 6px 2px;
    }
    .contacts-map-block-light iframe {
        min-height: 110px;
    }
}
