* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo a {
    font-size: 24px;
    font-weight: 800;
    color: #0066cc;
    text-decoration: none;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #0066cc;
}

.header-contacts {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.phone-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    z-index: 999;
    padding: 20px;
}

.mobile-menu.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.mobile-menu-content a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
}

.mobile-menu-content a:hover {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.mobile-menu-content .phone-link {
    color: #0066cc;
    background: #fff;
    border-radius: 8px;
    text-align: center;
}

/* HERO SECTION */
.hero {
    background: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 800;
    color: #0066cc;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.feature-icon {
    color: #00cc66;
    font-weight: 800;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-size: 16px;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #0066cc;
    color: #fff;
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,102,204,0.3);
}

.btn-outline {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-outline:hover {
    background: #0066cc;
    color: #fff;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
    background: #0066cc;
    color: #fff;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-small:hover {
    background: #0052a3;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.hero-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-label {
    font-weight: 600;
    color: #666;
    min-width: 120px;
}

.contact-phone {
    color: #0066cc;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
}

.messengers {
    display: flex;
    gap: 10px;
}

.messenger {
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.messenger.telegram { background: #0088cc; }
.messenger.whatsapp { background: #25d366; }
.messenger.max { background: #ff6600; }

.messenger:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* DISCOUNT SECTION */
.discount-section {
    background: #ff6600;
    padding: 40px 0;
    color: #fff;
    margin-top: -1px;
}

.discount-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.discount-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.discount-offer {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.discount-note {
    font-size: 16px;
    opacity: 0.9;
}

.discount-form h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.inline-form {
    display: flex;
    gap: 10px;
}

.inline-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
}

.inline-form input:focus {
    outline: 2px solid #fff;
}

.inline-form button {
    white-space: nowrap;
}

/* SERVICES SECTION */
.services {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,102,204,0.15);
    border-color: #0066cc;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.service-price {
    padding: 0 20px 15px;
    font-size: 22px;
    font-weight: 800;
    color: #ff6600;
}

.service-card .btn-small {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

/* PRICES SECTION */
.prices {
    padding: 80px 0;
    background: #ffffff;
}

.prices-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.prices-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: 0.3s;
}

.price-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.price-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.price-item p {
    font-size: 14px;
    color: #666;
}

.btn-price {
    background: #ff6600;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s;
}

.btn-price:hover {
    background: #e65c00;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255,102,0,0.3);
}

.prices-image {
    position: sticky;
    top: 100px;
}

.prices-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.price-factors {
    margin-top: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.price-factors h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 15px;
}

.price-factors ul {
    list-style: none;
    padding-left: 0;
}

.price-factors li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.price-factors li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 800;
    font-size: 20px;
}

/* HOW WE WORK */
.how-we-work {
    padding: 80px 0;
    background: #fff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: 0.3s;
}

.step:hover {
    background: #0066cc;
    color: #fff;
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.step:hover .step-icon {
    background: #fff;
    color: #0066cc;
}

.step-icon svg {
    width: 30px;
    height: 30px;
}

.step h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: #666;
}

.step:hover p {
    color: #e0e0e0;
}

/* REVIEWS CAROUSEL */
.reviews {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.reviews-carousel {
    position: relative;
    padding: 0 70px;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #0066cc;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(33.333% - 16.667px);
    width: calc(33.333% - 16.667px);
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
    flex: 1;
}

.review-author {
    font-weight: 700;
    color: #0066cc;
    font-size: 15px;
    text-align: right;
    margin-top: auto;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0;
    pointer-events: none;
    left: 0;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0066cc;
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    pointer-events: all;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #0052a3;
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* INFO SECTIONS */
.info-section {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.info-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.info-section .container {
    position: relative;
    z-index: 1;
}

.info-content {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.info-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 20px;
}

.info-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.info-content ul {
    list-style: none;
    padding-left: 0;
}

.info-content li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.info-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00cc66;
    font-weight: 800;
    font-size: 18px;
}

.info-content strong {
    color: #0066cc;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #fff;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item:hover {
    background: #e8f0ff;
}

.faq-question {
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}

.faq-question:after {
    content: "+";
    font-size: 24px;
    color: #0066cc;
    font-weight: 800;
}

.faq-item.active .faq-question:after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
}

/* CONTACTS */
.contacts {
    padding: 80px 0;
    background: #f8f9fa;
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-block h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 15px;
}

.contact-link {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: 0.3s;
}

.contact-link:hover {
    color: #0066cc;
}

.messengers-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.messenger-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.messenger-btn.telegram { background: #0088cc; }
.messenger-btn.whatsapp { background: #25d366; }
.messenger-btn.max { background: #ff6600; }

.messenger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    font-size: 13px;
    color: #999;
    margin-top: 10px;
}

.form-note a {
    color: #0066cc;
    text-decoration: underline;
}

/* КНОПКА ЗВОНКА */
.call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00cc66 0%, #00a854 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 204, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
}

.call-btn svg {
    width: 28px;
    height: 28px;
    color: #fff;
    transition: transform 0.3s ease;
}

.call-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 204, 102, 0.5);
}

.call-btn:hover svg {
    transform: scale(1.1);
}

.call-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.call-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 204, 102, 0.3);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* FOOTER */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-info p {
    margin-bottom: 8px;
    color: #ccc;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contacts a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.modal-content {
    position: relative;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    z-index: 1;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    transition: 0.3s;
}

.modal-close:hover {
    color: #333;
}

.modal-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 10px;
}

.modal-subtitle {
    color: #666;
    margin-bottom: 20px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-form input {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: 0.3s;
}

.modal-form input:focus {
    outline: none;
    border-color: #0066cc;
}

.modal-note {
    font-size: 13px;
    color: #999;
    margin-top: 15px;
}

.modal-note a {
    color: #0066cc;
    text-decoration: underline;
}

/* SUCCESS MODAL */
#successModal .modal-content {
    text-align: center;
}

#successModal h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

#successModal p {
    color: #666;
    margin-bottom: 20px;
}

/* PHONE INPUT MASK */
.phone-input {
    font-family: monospace;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-text {
        order: 1;
    }
    
    .reviews-carousel {
        padding: 0 50px;
    }
    
    .review-card {
        flex: 0 0 calc(50% - 12.5px);
        width: calc(50% - 12.5px);
    }
    
    .carousel-controls {
        padding: 0;
    }
    
    .prices-content {
        grid-template-columns: 1fr;
    }
    
    .prices-image {
        position: static;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .discount-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .header-contacts {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-contacts {
        font-size: 14px;
    }
    
    .contact-label {
        min-width: 100px;
    }
    
    .contact-phone {
        font-size: 16px;
    }
    
    .messengers {
        flex-wrap: wrap;
    }
    
    .reviews-carousel {
        padding: 0 35px;
    }
    
    .review-card {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .carousel-controls {
        padding: 0;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .discount-text h2 {
        font-size: 24px;
    }
    
    .discount-offer {
        font-size: 20px;
    }
    
    .inline-form {
        flex-direction: column;
    }
    
    .inline-form button {
        width: 100%;
    }
    
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .btn-price {
        width: 100%;
    }
    
    .info-content {
        padding: 25px;
    }
    
    .info-content h2 {
        font-size: 24px;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .footer-bottom {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 26px;
    }
    
    .feature-item {
        font-size: 14px;
    }
    
    .service-card h3 {
        font-size: 16px;
    }
    
    .service-price {
        font-size: 18px;
    }
    
    .step {
        padding: 20px 15px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
