body {
    font-family: 'Montserrat', sans-serif;
    color: #333333;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    line-height: 1.5;
}

.mobile-container {
    max-width: 480px;
    margin: 0 auto;
    background-color: #ffffff;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding-bottom: 40px;
}

/* Статический баннер */
.static-banner {
    width: 100%;
    height: 300px; /* Высоту можно менять */
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

.static-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.content {
    padding: 20px;
}

.intro-text {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.features .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.features .feature-icon {
    color: #b53f3f;
    font-size: 18px;
    border: 1px solid #b53f3f;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.features .feature-text h4 {
    margin: 0 0 5px 0;
    font-size: 15px;
    font-weight: 600;
}

.features .feature-text p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

/* Кнопки */
.btn {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    box-sizing: border-box;
    margin-bottom: 15px;
    transition: 0.3s;
}

.btn small {
    display: block;
    font-weight: 400;
    font-size: 11px;
    margin-top: 3px;
    opacity: 0.8;
}

.btn-primary {
    background-color: #b53f3f;
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: #9c3535;
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.btn-outline {
    background-color: transparent;
    color: #333333;
    border: 1px solid #333333;
}

.social-section {
    text-align: center;
    margin: 30px 0;
}

.social-section p {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}

.social-section .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-section .social-icons .social-icon {
    width: 45px;
    height: 45px;
    border: 1px solid #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    text-decoration: none;
    font-size: 20px;
}

/* Прайс и аккордеон */
.pricing-header {
    text-align: center;
    margin: 40px 0 20px;
}

.pricing-header h2 {
    color: #b53f3f;
    font-size: 26px;
    margin: 0 0 5px 0;
    letter-spacing: 1px;
}

.pricing-header p {
    font-style: italic;
    color: #555;
    margin: 0;
    font-size: 15px;
}

.accordion {
    margin-bottom: 20px;
}

.accordion .accordion-item {
    border-bottom: 1px solid #f5f5f5;
}

.accordion .accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion .accordion-header {
    width: 100%;
    text-align: left;
    padding: 15px 0;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-family: inherit;
}

.accordion .accordion-icon {
    color: #b53f3f;
    border: 1px solid #b53f3f;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.accordion .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    font-size: 13px;
    color: #444;
}

.accordion .accordion-body .accordion-body-inner {
    padding: 0 0 20px 40px;
}

.accordion .accordion-body ul {
    padding-left: 0;
    list-style: none;
}

.accordion .accordion-body p, 
.accordion .accordion-body li {
    margin-bottom: 8px;
}

.dog-icon { 
    margin-right: 5px; 
}

/* Карта */
.map-wrapper {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

/* Галерея Инстаграм */
.insta-gallery-wrapper {
    margin: 40px 0 20px;
}

.insta-gallery-wrapper .insta-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 5px;
}

.insta-gallery-wrapper .insta-gallery-header h3 {
    margin: 0;
    font-size: 16px;
    color: #333333;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.insta-grid .insta-item {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.insta-grid .insta-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-btn-red {
    background-color: #b53f3f;
    color: #fff;
    padding: 6px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.insta-btn-red::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: insta-glare 3s infinite;
}

@keyframes insta-glare {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* Футер */
.footer {
    text-align: center;
    padding: 20px;
    border-top: 2px solid #e0e0eb;
    font-size: 12px;
    color: #666;
    margin-top: 20px;
}

.footer .footer-legal {
    font-size: 10px;
    font-style: italic;
    color: #999;
}