/* ==========================================================================
   1. ОСНОВНЫЕ СТИЛИ И СБРОС
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600&display=swap');

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    word-break: break-word;
    overflow-wrap: break-word;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #020503;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.brand-green-color {
    color: #17b978;
}

/* ==========================================================================
   2. ШАПКА И НАВИГАЦИЯ (HEADER & NAV)
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 8%;
    z-index: 1000;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

header.scrolled {
    padding: 20px 8%;
    background: rgba(2, 5, 3, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(23, 185, 120, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 1.4rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 200;
    color: #ffffff;
    flex-shrink: 0;
}

.logo span { 
    color: rgba(23, 185, 120, 0.8);
    font-weight: 400; 
    margin-left: 5px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    position: relative;
}

nav ul { 
    display: flex; 
    list-style: none; 
    gap: 35px; 
    margin: 0 auto; 
    padding: 0 20px;
}

nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 8px;
    white-space: nowrap;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #17b978;
    box-shadow: 0 0 12px #17b978;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover { 
    color: #17b978; 
}

.lang { 
    font-size: 0.75rem; 
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    flex-shrink: 0;
    display: none; 
}

.lang span {
    cursor: pointer;
    transition: 0.3s;
    margin: 0 3px;
}

.lang span:hover { color: #ffffff; }
.lang .active { color: #17b978; font-weight: 500; }

/* ==========================================================================
   3. ГЛАВНЫЙ ЭКРАН (HERO)
   ========================================================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%; 
    height: 100%;
    z-index: 1;
    overflow: hidden; 
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #020503 0%, #020503 15%, rgba(2, 5, 3, 0.4) 50%, transparent 100%),
                linear-gradient(0deg, #020503 8%, transparent 30%),
                linear-gradient(180deg, #020503 0%, transparent 15%);
    z-index: 2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    filter: contrast(1.05) brightness(0.9);
    animation: tigerBreathe 14s ease-in-out infinite;
    transform-origin: right center; 
}

@keyframes tigerBreathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

#sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

h1 {
    font-size: 4.2rem;
    font-weight: 200;
    letter-spacing: 8px;
    line-height: 1.15;
    margin-bottom: 40px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 460px;
    border-left: 2px solid #17b978;
    padding-left: 25px;
    font-weight: 300;
}

/* ==========================================================================
   4. КНОПКИ (BUTTONS & CTA)
   ========================================================================== */
.whatsapp-btn, .btn-cta {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 35px;
    background: rgba(23, 185, 120, 0.04);
    backdrop-filter: blur(5px);
    border: 1px solid #17b978;
    color: #17b978;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 15px rgba(23, 185, 120, 0.1);
}

.whatsapp-btn:hover, .btn-cta:hover {
    background: #17b978;
    color: #020503;
    box-shadow: 0 0 30px rgba(23, 185, 120, 0.45);
    transform: translateY(-3px);
}

.btn-service-card {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 24px;
    border: 1px solid rgba(23, 185, 120, 0.3);
    color: #17b978;
    text-decoration: none;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
    align-self: flex-start;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-service-card:hover {
    border-color: #17b978;
    background: rgba(23, 185, 120, 0.08);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(23, 185, 120, 0.25);
    padding-left: 30px;
}

/* ==========================================================================
   5. СЕКЦИЯ УСЛУГ (SERVICES)
   ========================================================================== */
.services-section {
    padding: 120px 8%;
    background-color: #020503;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(23, 185, 120, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 80px;
}

.section-title span { color: #17b978; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: linear-gradient(145deg, #050d09, #020503);
    border: 1px solid rgba(23, 185, 120, 0.15);
    border-radius: 6px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.service-card:hover {
    border-color: rgba(23, 185, 120, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 
                0 0 30px rgba(23, 185, 120, 0.15);
}

.service-num {
    display: block;
    font-size: 0.65rem;
    color: #17b978;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-price {
    color: rgba(23, 185, 120, 0.7); 
    font-size: 0.75rem; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    margin-bottom: 12px; 
    font-weight: 500;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.7;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: #17b978;
    text-decoration: none;
    font-size: 0.8rem;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}
.service-link:hover { border-bottom: 1px solid #17b978; }

/* ==========================================================================
   6. СЕКЦИЯ ОБ ОСНОВАТЕЛЕ (ABOUT)
   ========================================================================== */
.about-section {
    padding: 100px 10%;
    background: #020503;
    display: flex;
    justify-content: center;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: 80px;
    align-items: center;
    max-width: 1200px;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    border: 1px solid rgba(23, 185, 120, 0.25);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(15%); 
    transition: transform 0.5s ease;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 200;
    letter-spacing: 5px;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.about-content strong {
    color: #17b978;
    font-weight: 500;
}

/* ==========================================================================
   7. ПОРТФОЛИО (PORTFOLIO)
   ========================================================================== */
.portfolio-section {
    padding: 120px 8%; 
    background: #020503;
}

.portfolio-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 40px; 
    margin-top: 60px;
}

.portfolio-item-link {
    text-decoration: none;
}

.portfolio-card-custom {
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    cursor: pointer;
    padding: 20px;
    border-radius: 6px;
    background: linear-gradient(145deg, #040a07, #020503);
    border: 1px solid rgba(23, 185, 120, 0.1);
    transition: all 0.4s ease;
}

.portfolio-card-custom:hover {
    border-color: rgba(23, 185, 120, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

.portfolio-logo-bg {
    width: 100%; 
    height: 200px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    margin-bottom: 25px; 
    background: rgba(255,255,255,0.02); 
    border-radius: 4px;
}

.portfolio-img-effect {
    max-width: 80%; 
    max-height: 120px; 
    filter: brightness(0) invert(1); 
    opacity: 0.85; 
    transition: 0.4s ease;
}

.portfolio-card-custom:hover .portfolio-img-effect {
    opacity: 1;
    transform: scale(1.05);
}

.portfolio-card-custom h3 {
    color: #fff; 
    margin-bottom: 10px;
}

.portfolio-btn-text {
    margin-top: auto; 
    padding-top: 20px; 
    color: #17b978; 
    font-size: 0.8rem; 
    letter-spacing: 1px;
}

/* ==========================================================================
   8. SEO-БЛОК (SEO LOCAL SECTION)
   ========================================================================== */
.seo-local-section {
    padding: 100px 8%;
    background: #020503;
    border-top: 1px solid rgba(23, 185, 120, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.seo-local-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 40px;
}

.seo-local-block h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.seo-local-block h3 span, .seo-local-block strong {
    color: #17b978;
    font-weight: 500;
}

/* ==========================================================================
   9. КОНТАКТЫ И ФОРМА (CONTACTS & FORM)
   ========================================================================== */
.contacts-section-custom {
    padding: 120px 8%; 
    background: #020503; 
    position: relative;
}

.contacts-title-center {
    text-align: center; 
    margin-bottom: 20px;
}

.description-contacts-center {
    margin: 0 auto 50px; 
    text-align: center; 
    border-left: none; 
    padding-left: 0; 
    max-width: 600px;
}

.form-wrapper-box {
    max-width: 600px; 
    margin: 0 auto 60px; 
    background: linear-gradient(145deg, #050d09, #020503); 
    border: 1px solid rgba(23, 185, 120, 0.2); 
    padding: 40px; 
    border-radius: 6px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.form-group-field {
    margin-bottom: 25px; 
    text-align: left;
}

.field-margin-large {
    margin-bottom: 30px;
}

.form-label-style {
    color: rgba(255,255,255,0.6); 
    font-size: 0.7rem; 
    letter-spacing: 1.5px; 
    text-transform: uppercase; 
    display: block; 
    margin-bottom: 8px;
}

.form-input-style, .form-textarea-style {
    width: 100%; 
    padding: 14px; 
    background: rgba(255,255,255,0.03); 
    border: 1px solid rgba(23, 185, 120, 0.2); 
    color: #fff; 
    font-family: inherit; 
    font-size: 0.9rem; 
    border-radius: 4px; 
    transition: all 0.3s ease; 
    outline: none;
}

.form-input-style:focus, .form-textarea-style:focus {
    border-color: #17b978;
    background: rgba(23, 185, 120, 0.04);
    box-shadow: 0 0 15px rgba(23, 185, 120, 0.2);
}

.form-textarea-style {
    resize: vertical;
}

.form-btn-submit {
    width: 100%; 
    padding: 16px; 
    background: rgba(23, 185, 120, 0.05); 
    border: 1px solid #17b978; 
    color: #17b978; 
    font-size: 0.8rem; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    font-weight: 500; 
    cursor: pointer; 
    border-radius: 4px;
    transition: all 0.4s; 
    box-shadow: 0 0 15px rgba(23, 185, 120, 0.1);
}

.form-btn-submit:hover {
    background: #17b978;
    color: #020503;
    box-shadow: 0 0 25px rgba(23, 185, 120, 0.4);
}

.form-status-style {
    margin-top: 20px; 
    font-size: 0.85rem; 
    display: none; 
    letter-spacing: 0.5px;
}

.contact-links-row {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 40px; 
    flex-wrap: wrap;
}

.email-link-custom {
    color: rgba(255,255,255,0.7); 
    text-decoration: none; 
    font-size: 0.9rem; 
    font-weight: 300; 
    letter-spacing: 1px; 
    transition: 0.3s; 
    display: flex; 
    align-items: center; 
    gap: 10px;
}

.email-link-custom:hover {
    color: #17b978;
}

.whatsapp-business-btn {
    color: #17b978; 
    text-decoration: none; 
    font-size: 0.9rem; 
    font-weight: 400; 
    letter-spacing: 1px; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    border: 1px solid rgba(23, 185, 120, 0.3); 
    padding: 10px 20px; 
    border-radius: 4px; 
    background: rgba(23, 185, 120, 0.03);
}

.whatsapp-business-btn:hover {
    background: rgba(23, 185, 120, 0.1);
    box-shadow: 0 0 15px rgba(23, 185, 120, 0.2);
}

.whatsapp-btn-text {
    text-transform: uppercase; 
    font-size: 0.75rem; 
    letter-spacing: 2px; 
    font-weight: 500;
}

/* ==========================================================================
   10. ПОДВАЛ И COOKIE (FOOTER & COOKIE BANNER)
   ========================================================================== */
footer, .footer-custom-style {
    padding: 60px 8% 40px; 
    background-color: #020503; 
    border-top: 1px solid rgba(23, 185, 120, 0.08); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 20px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

.footer-logo, .footer-logo-custom {
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-size: 0.75rem; 
    color: rgba(255,255,255,0.4);
}

.footer-logo span, .footer-logo-custom span { color: #17b978; }

.footer-links-container {
    display: flex; 
    gap: 25px;
}

.footer-link-item {
    color: rgba(255,255,255,0.5); 
    text-decoration: none; 
    font-size: 0.7rem; 
    letter-spacing: 1px; 
    transition: 0.3s;
}

.footer-link-item:hover {
    color: #17b978;
}

.footer-socials, .footer-socials-container {
    display: flex; 
    gap: 20px;
}

.footer-socials a, .footer-social-icon-link {
    color: rgba(255, 255, 255, 0.5); 
    transition: 0.3s; 
    display: flex; 
    align-items: center;
}

.footer-socials svg {
    width: 20px;
    height: 20px;
}

.footer-socials a:hover, .footer-social-icon-link:hover {
    color: #17b978;
    transform: translateY(-3px);
    filter: drop-shadow(0 0 5px rgba(23, 185, 120, 0.5));
}

.footer-copyright-text {
    font-size: 0.75rem; 
    color: rgba(255,255,255,0.4); 
    letter-spacing: 1px;
}

/* Баннер Cookie */
.cookie-banner-box {
    position: fixed; 
    bottom: 30px; 
    left: 30px; 
    width: calc(100% - 60px); 
    max-width: 420px; 
    background: rgba(4, 10, 7, 0.92); 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px); 
    border: 1px solid rgba(23, 185, 120, 0.3); 
    padding: 20px; 
    z-index: 9999; 
    display: none; 
    border-radius: 6px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.cookie-banner-text {
    font-size: 0.8rem; 
    color: rgba(255,255,255,0.85); 
    line-height: 1.5; 
    margin-bottom: 20px;
}

.cookie-title {
    color: #17b978; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    display: block; 
    margin-bottom: 5px;
}

.cookie-link {
    color: #17b978; 
    text-decoration: underline;
}

.cookie-buttons-row {
    display: flex; 
    gap: 10px;
}

.cookie-btn-accept {
    flex: 1; 
    padding: 10px; 
    background: #17b978; 
    border: none; 
    color: #020503; 
    cursor: pointer; 
    font-size: 0.65rem; 
    font-weight: 600; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    border-radius: 2px;
    transition: 0.3s;
}

.cookie-btn-accept:hover {
    box-shadow: 0 0 15px rgba(23, 185, 120, 0.4);
}

.cookie-btn-refuse {
    flex: 1; 
    padding: 10px; 
    background: transparent; 
    border: 1px solid rgba(255,255,255,0.2); 
    color: #fff; 
    cursor: pointer; 
    font-size: 0.65rem; 
    letter-spacing: 1px; 
    text-transform: uppercase;
    border-radius: 2px;
    transition: 0.3s;
}

.cookie-btn-refuse:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   11. КНОПКА ВВЕРХ (BACK TO TOP)
   ========================================================================== */
#backToTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: rgba(2, 5, 3, 0.8); 
    border: 1px solid rgba(23, 185, 120, 0.3); 
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(10px); 
    color: #17b978; 
    padding: 14px;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

#backToTop:hover {
    border-color: #17b978;
    background: rgba(23, 185, 120, 0.1);
    color: #ffffff; 
    box-shadow: 0 0 25px rgba(23, 185, 120, 0.4); 
    transform: translateY(-5px);
}

#backToTop:hover svg {
    transform: translateY(-2px); 
}

#backToTop:active {
    transform: translateY(1px) scale(0.9);
}

/* ==========================================================================
   12. АДАПТИВНОСТЬ (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .about-content h2 {
        text-align: center;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    margin-left: 20px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    background-color: #fff;
    transition: 0.3s;
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; letter-spacing: 4px; }
    
    header { 
        padding: 20px 5%; 
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }
    
    .menu-toggle { display: flex; }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(4, 10, 7, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 120px 40px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: 1px solid rgba(23, 185, 120, 0.2);
        display: flex;
        flex-direction: column;
        justify-content: space-between; 
    }
    
    nav.active { right: 0; }
    
    nav ul { 
        display: flex; 
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    nav a { font-size: 1rem; }

    .lang {
        margin-top: 40px;
        font-size: 0.9rem;
        border-top: 1px solid rgba(23, 185, 120, 0.2);
        padding-top: 20px;
        width: 100%;
    }
    
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    
    footer, .footer-custom-style { 
        flex-direction: column; 
        gap: 25px; 
        text-align: center; 
        padding: 40px 5%; 
    }
    
    .services-section, #portfolio, #contacts, .contacts-section-custom { padding: 60px 5% !important; }
    .about-section { padding: 60px 5%; }
    .seo-local-container { grid-template-columns: 1fr; gap: 40px; }
    .seo-local-section { padding: 60px 5%; }
}