/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #22d3ee;
    --primary-dark: #0891b2;
    --secondary-color: #06b6d4;
    --accent-color: #f97316;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 10px 0;
    text-align: center;
}

.call-badge {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.call-badge i {
    margin-right: 8px;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.cta-link {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 25px;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-link:hover {
    background: var(--primary-dark);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0fdfa 100%);
    padding: 80px 0 60px;
    overflow: hidden;
}

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

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.hero .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-description {
    font-size: 17px;
    max-width: 600px;
    margin: 0 0 30px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.hero-image {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 550px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    filter: drop-shadow(0 10px 30px rgba(34, 211, 238, 0.2));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* ===== STATS SECTION ===== */
.stats {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 0;
}

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

.stat-card {
    text-align: center;
    color: white;
    padding: 20px;
}

.stat-card i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-card h3 {
    font-size: 42px;
    margin-bottom: 8px;
    font-weight: 700;
}

.stat-card p {
    font-size: 16px;
    opacity: 0.95;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: #ccfbf1;
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 80px 0;
    background: var(--bg-light);
}

.ecommerce-pricing {
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.pricing-header p {
    color: var(--text-light);
    font-size: 14px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 20px 0;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 8px;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 18px;
    color: var(--text-light);
    align-self: flex-end;
    margin-bottom: 8px;
}

.delivery-tag {
    background: #dcfce7;
    color: var(--success-color);
    padding: 8px 15px;
    border-radius: 6px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.delivery-tag i {
    margin-right: 5px;
}

.pricing-features {
    list-style: none;
    margin: 20px 0 30px;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--success-color);
    font-size: 16px;
}

.pricing-btn {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
}

.pricing-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===== OFFERS SECTION ===== */
.offers {
    padding: 80px 0;
    background: white;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.offer-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.offer-card.featured-offer {
    background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.offer-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.offer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 8px 20px rgba(34, 211, 238, 0.3);
}

.offer-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.offer-price {
    margin: 25px 0;
}

.original-price {
    display: block;
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.offer-price-amount {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.offer-features {
    list-style: none;
    margin: 25px 0 30px;
    text-align: left;
}

.offer-features li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-features i {
    color: var(--success-color);
    font-size: 16px;
    flex-shrink: 0;
}

.offer-btn {
    display: block;
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.offer-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(34, 211, 238, 0.3);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 35px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-bottom: 3px solid var(--primary-color);
}

.feature-card i {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    color: var(--text-dark);
}

/* ===== WHY WEBSITE SECTION ===== */
.why-website {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.benefit-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background: white;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.service-tag {
    display: inline-block;
    background: #ccfbf1;
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin: 20px 20px 10px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    padding: 0 20px 10px;
}

.service-card p {
    color: var(--text-light);
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    font-size: 48px;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.author-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-icon i {
    font-size: 28px;
    color: white;
}

.author-info h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.author-info p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button {
    background: var(--primary-color);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.contact-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #9ca3af;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 28px;
}

/* ===== FLOATING CONTACT WIDGETS ===== */
.floating-widgets {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.phone-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.phone-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), #0e7490);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(34, 211, 238, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(34, 211, 238, 0.6);
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
        font-size: 13px;
    }

    .nav-wrapper {
        padding: 12px 0;
    }

    .logo img {
        height: 32px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .nav-menu.active {
        max-height: 500px;
        padding: 10px 0;
    }

    .nav-menu li {
        padding: 0;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 12px 20px;
        width: 100%;
    }

    .cta-link {
        margin: 5px 20px;
        display: inline-block !important;
        width: auto !important;
        text-align: center;
    }

    .hero {
        padding: 40px 0 40px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-badge {
        font-size: 13px;
        padding: 8px 16px;
    }

    .hero-image {
        order: 2;
    }

    .hero-image img {
        max-width: 90%;
        height: auto;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .section-header h2 {
        font-size: 28px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-info {
        order: 1;
    }

    .contact-form {
        order: 2;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-col {
        text-align: left;
    }

    .footer-col h3,
    .footer-col h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-col p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer-col ul li a {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 20px;
    }

    .payment-icons {
        justify-content: center;
    }

    .floating-widgets {
        bottom: 80px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}
