:root {
    --primary: #fbc0de;
    --primary-dark: #e9a0cc;
    --primary-light: #ffd6ed;
    --secondary: #6c757d;
    --dark: #343a40;
    --light: #f8f9fa;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 0;
}

.logo p {
    font-size: 0.9rem;
    margin: 0;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a.btn-contact {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--border-radius);
}

nav ul li a.btn-contact:hover {
    background-color: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
}

.mobile-menu-btn span {
    height: 3px;
    background-color: var(--primary-dark);
    margin-bottom: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

/* Banner Styles */
#banner {
    background: linear-gradient(135deg, var(--primary-light), var(--white));
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.banner-content {
    width: 50%;
}

.banner-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeIn 1s ease;
}

#changing-word {
    display: block; /* Изменено с inline-block на block для гарантированного начала с новой строки */
    min-width: 120px;
    color: var(--primary-dark);
    transition: opacity 0.5s ease;
    font-weight: 700; /* Делаем жирным как и весь заголовок */
    margin-top: 5px; /* Небольшой отступ сверху */
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease;
}

.banner-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image img {
    max-width: 80%;
    animation: float 4s infinite ease-in-out;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(251, 192, 222, 0.3);
    animation: bubble 8s infinite ease-in-out;
}

.bubble-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

.bubble-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    right: 20%;
    animation-delay: 4s;
}

/* About Styles */
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    width: 100%;
}

.about-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature {
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    background-color: var(--white);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Stats Styles */
#stats {
    background-color: var(--primary-light);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

/* Services Styles */
.tabs {
    margin-top: 20px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 25px;
    background-color: var(--white);
    border: 1px solid var(--primary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:first-child {
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}

.tab-btn:last-child {
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.service-description {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.service-image {
    width: 40%;
}

.service-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.service-text {
    width: 60%;
}

.service-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-text p {
    margin-bottom: 25px;
}

.service-steps {
    margin: 30px 0;
}

.step {
    display: flex;
    margin-bottom: 25px;
    padding-left: 20px;
    position: relative;
}

.step-num {
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    line-height: 1.3;
    display: block;
    width: 100%;
}

.step p {
    margin: 0;
    color: var(--gray);
}

/* Стили для списков услуг */
.service-list {
    margin: 25px 0 40px; /* Увеличиваем нижний отступ до 40px, чтобы кнопка была дальше от списка */
}

.service-list h4 {
    color: var(--primary-dark);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-list ul {
    list-style: none;
    padding-left: 5px;
}

.service-list ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.service-list ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 15px;
    background-color: var(--primary-light);
    border-radius: 50%;
}

.service-list ul li:after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: -1px;
    font-size: 12px;
    color: var(--primary-dark);
}

/* Media queries для списков услуг */
@media (max-width: 768px) {
    .service-list ul li {
        padding-left: 22px;
        font-size: 0.95rem;
    }

    .service-list ul li:before {
        width: 12px;
        height: 12px;
        top: 6px;
    }

    .service-list ul li:after {
        left: 2px;
        top: -2px;
        font-size: 10px;
    }
}

/* Добавляем специальный класс для контроля отступов секции услуг */
#services {
    padding-bottom: 40px; /* Уменьшаем нижний отступ секции услуг */
}

/* Gallery Styles */
.gallery-slider {
    position: relative;
    margin-top: 40px;
}

.slider-container {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.slide {
    width: 100%;
    display: none;
}

.slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.before-after {
    display: flex;
    justify-content: space-between;
}

.before, .after {
    width: 49%;
    position: relative;
}

.before span, .after span {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 500;
    z-index: 1;
}

.img-placeholder {
    width: 100%;
    height: 400px;
    background-color: #f3f3f3;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-dark);
}

.slider-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary);
}

/* Reviews Styles - полностью обновленные */
.reviews-slider {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}

.reviews-container {
    position: relative;
    min-height: 300px;
}

/* Более строгое правило для скрытия отзывов */
.review-item {
    display: none !important;
    width: 100%;
    padding: 10px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Правило для активного отзыва перекрывает display: none */
.review-item[aria-hidden="false"],
.review-item.active {
    display: block !important;
    opacity: 1;
}

.review-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.review-content::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(251, 192, 222, 0.2);
    font-family: serif;
    line-height: 1;
}

.stars {
    margin-bottom: 15px;
}

.stars i {
    color: var(--warning);
    margin-right: 3px;
}

.reviewer {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
}

.name {
    font-weight: 600;
}

/* Обновленные Contacts Styles */
.contacts-content {
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    width: 100%;
    text-align: center;
}

.contact-info p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    flex: 0 0 250px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-method a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--dark);
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.contact-method a:hover {
    background-color: var(--primary-light);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-icon i {
    font-size: 2rem;
}

.contact-method:hover .contact-icon {
    background-color: var(--primary);
    color: var(--white);
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-details p {
    margin: 0;
    color: var(--gray);
    font-size: 1rem;
}

.contact-cta {
    padding: 30px;
    background-color: var(--primary-light);
    border-radius: var(--border-radius);
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta p {
    margin-bottom: 20px;
}

.contact-cta .btn {
    margin-top: 10px;
}

/* Удаляем стили для формы, которые больше не нужны */
/* 
.form-group {
    ...
}
*/

/* Responsive Styles для контактов */
@media (max-width: 768px) {
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method {
        width: 100%;
        max-width: 300px;
    }
}

/* Стили для изображений галереи */
.gallery-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.error-message {
    color: var(--danger);
    text-align: center;
    padding: 20px;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: var(--border-radius);
}

/* Footer Styles */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: var(--primary);
    margin: 0;
    font-size: 1.8rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Добавляем класс visible для анимируемых элементов */
.feature.visible, .stat-item.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bubble {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, -15px);
    }
    50% {
        transform: translate(-5px, -25px);
    }
    75% {
        transform: translate(-15px, -10px);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .banner-content h2 {
        font-size: 2.2rem;
    }
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    .feature-icon i {
        font-size: 1.5rem;
    }
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .service-description {
        flex-direction: column;
    }
    .service-image, .service-text {
        width: 100%;
    }
    .service-image {
        margin-bottom: 30px;
    }
    .contacts-content {
        flex-direction: column;
    }
    .contact-info, .contact-form {
        width: 100%;
    }
    .contact-info {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    .mobile-menu-btn {
        display: flex;
    }
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
    }
    nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    nav ul {
        flex-direction: column;
    }
    nav ul li {
        margin: 10px 0;
    }
    #banner {
        padding-top: 120px;
    }
    .banner-content {
        width: 100%;
        text-align: center;
    }
    .banner-image {
        /* Изменяем с display: none на видимый элемент */
        position: relative;
        width: 100%;
        height: auto;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 30px;
    }
    
    .banner-image img {
        max-width: 70%;
        margin: 0 auto;
    }
    
    /* Перемещаем пузыри относительно центра на мобильных */
    .bubble-1 {
        top: 10%;
        left: 15%;
    }
    
    .bubble-2 {
        top: 40%;
        left: 20%;
    }
    
    .bubble-3 {
        bottom: 20%;
        right: 15%;
    }
    
    /* Изменяем отображение блоков "О компании" на одну колонку для мобильных устройств */
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    .stats-container {
        grid-template-columns: 1fr;
    }
    .tab-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .tab-btn {
        border-radius: var(--border-radius) !important;
    }
    .before-after {
        flex-direction: column;
        gap: 20px;
    }
    .before, .after {
        width: 100%;
    }
    .img-placeholder {
        height: 250px;
    }
}

/* SEO Elements Styles */
.services-keywords {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    border: 1px solid #e9ecef;
}

.services-keywords h3 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tag {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--primary);
}

.service-tag:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(251, 192, 222, 0.3);
}

/* SEO Content Section */
#seo-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    border-top: 1px solid #e9ecef;
}

.seo-content h2 {
    text-align: center;
    color: var(--dark);
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.seo-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.seo-service {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.seo-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.seo-service h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.seo-service p {
    color: var(--secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.seo-advantages {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border-left: 4px solid var(--primary);
}

.seo-advantages h3 {
    color: var(--dark);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.seo-advantages ul {
    list-style: none;
    padding: 0;
}

.seo-advantages ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--secondary);
    line-height: 1.6;
}

.seo-advantages ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-dark);
    font-weight: bold;
    font-size: 1.2rem;
}

.seo-advantages ul li strong {
    color: var(--dark);
}

.seo-areas {
    background: linear-gradient(135deg, var(--primary-light), var(--white));
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid var(--primary);
}

.seo-areas h4 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.seo-areas p {
    color: var(--secondary);
    line-height: 1.7;
    margin: 0;
}

/* Mobile Responsive for SEO Elements */
@media (max-width: 768px) {
    .services-tags {
        justify-content: center;
    }
    
    .service-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .seo-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .seo-content h2 {
        font-size: 1.8rem;
    }
    
    .seo-service {
        padding: 20px;
    }
    
    .seo-advantages {
        padding: 25px;
    }
    
    .services-keywords {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .seo-content h2 {
        font-size: 1.6rem;
    }
    
    .services-keywords h3 {
        font-size: 1.1rem;
    }
    
    .seo-service h3 {
        font-size: 1.2rem;
    }
}
