:root {
    --primary: #2546F6;
    --primary-dark: #1e3ad4;
    --primary-light: #4381FF;
    --secondary: #10b981;
    --accent-orange: #FFA459;
    --accent-orange-dark: #F88C2D;
    --text-dark: #111827;
    --text-body: #374151;
    --text-light: #6b7280;
    --bg-body: #f9fafb;
    --bg-white: #ffffff;
    --border: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    background: var(--bg-body);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    background: var(--primary);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 36px;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
}

.nav-links li {
    padding: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 0.875rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Buttons */
.btn {
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--accent-orange);
    color: white;
}

.btn-secondary:hover {
    background: var(--accent-orange-dark);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, var(--primary) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    background: transparent;
    padding: 0;
    max-width: 550px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: white;
}

.hero-text-rotator {
    color: var(--accent-orange);
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f0f4ff 0%, #f8fafc 100%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}

.feature-card:hover {
    border-color: var(--primary);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #f8fafc;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-content {
    padding: 1.25rem;
}

.service-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.service-price {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Websites Section */
.websites {
    padding: 5rem 0;
    background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 100%);
}

.table-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.websites table {
    width: 100%;
    border-collapse: collapse;
}

.websites th {
    background: var(--primary);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.websites td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    vertical-align: middle;
}

.websites tr:last-child td {
    border-bottom: none;
}

.websites tr:hover {
    background: #f9fafb;
}

.websites .website-name {
    font-weight: 600;
    color: var(--text-dark);
}

.websites .website-url {
    color: var(--primary);
    font-size: 0.8rem;
    text-decoration: none;
}

.websites .website-url:hover {
    text-decoration: underline;
}

.metric-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: #f3f4f6;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-dark);
}

/* Packages Section */
.packages {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 100%);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.package-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.package-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border-color: var(--primary);
    border-width: 2px;
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.package-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0.5rem 0;
}

.package-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.package-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-body);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--secondary);
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: var(--bg-body);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 0;
}

/* Newsletter */
.newsletter {
    padding: 5rem 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.newsletter h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.newsletter p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    border: none;
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 0.875rem 1.5rem;
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.875rem;
}

.newsletter-form button:hover {
    background: var(--accent-orange-dark);
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Homepage Footer Grid - 4 column */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section .logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-section h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.1rem;
    transition: background 0.2s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary);
}

/* Mobile Menu */
.mobile-menu-btn,
.mobile-menu-close {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    padding: 0.5rem;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {

    .feature-grid,
    .service-grid,
    .package-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 1.75rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-close {
        display: flex !important;
        position: fixed !important;
        top: 1rem;
        right: 1rem;
        left: auto !important;
        font-size: 1.5rem;
        cursor: pointer;
        color: white;
        background: rgba(255, 255, 255, 0.2);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        border: none;
        padding: 0;
        z-index: 1000;
    }

    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li.mobile-menu-close {
        width: 44px;
        border-bottom: none;
        position: fixed;
        top: 1rem;
        right: 1rem;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
    }

    .nav-links .btn {
        margin-top: 1rem;
        text-align: center;
        display: block;
    }

    /* Hero */
    .hero {
        padding: 3rem 0;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content {
        padding: 0;
        max-width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        text-align: center;
        width: 100%;
    }

    .hero-image {
        display: none;
    }

    /* Grids */
    .feature-grid,
    .service-grid,
    .package-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    /* Table */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -1rem;
        padding: 0 1rem;
    }

    .websites table {
        min-width: 650px;
    }

    .websites th,
    .websites td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    /* Footer - Major mobile fix */
    .footer-content,
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .footer>.container>div:first-of-type {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Packages */
    .package-price {
        font-size: 2rem;
    }

    /* Features */
    .features,
    .services,
    .websites,
    .packages,
    .testimonials,
    .newsletter {
        padding: 3rem 0;
    }

    /* Page Headers - Mobile */
    .section-title {
        font-size: 1.25rem !important;
    }

    /* Cards - Mobile */
    .feature-card,
    .service-card,
    .package-card,
    .testimonial-card {
        padding: 1.25rem;
    }

    /* Form adjustments */
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.625rem 0.875rem;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    /* Button adjustments */
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        width: 100%;
        justify-content: center;
    }

    /* Container padding */
    .container {
        padding: 0 1rem;
    }

    /* Hide long text on mobile */
    .hide-mobile {
        display: none !important;
    }

    /* Footer inline grid fix */
    footer .container>div[style*="grid-template-columns: 2fr 1fr 1fr 1.5fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    /* Fix inline flex on mobile */
    div[style*="display: flex"][style*="justify-content: space-between"] {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Extra Small Mobile - Below 480px */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 1.125rem !important;
    }

    .package-price {
        font-size: 1.75rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.875rem;
    }

    /* Footer social icons */
    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    /* Very small buttons */
    .btn-sm {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    /* Newsletter */
    .newsletter h2 {
        font-size: 1.25rem;
    }

    .newsletter p {
        font-size: 0.875rem;
    }

    /* Header logo */
    .logo {
        font-size: 1rem;
    }

    .logo img {
        height: 28px;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 70, 246, 0.1);
}

/* Alert Styles */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Card base */
.card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.card-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.card-body {
    padding: 1.25rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-muted {
    color: var(--text-light);
}

.fw-bold {
    font-weight: 700;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

/* Additional Responsive Helpers */
@media (max-width: 768px) {
    .d-none-mobile {
        display: none !important;
    }

    .w-100-mobile {
        width: 100% !important;
    }

    .text-center-mobile {
        text-align: center !important;
    }

    .flex-column-mobile {
        flex-direction: column !important;
    }
}

/* =====================================
   WEBSITES PAGE RESPONSIVE STYLES
   ===================================== */

/* Website Table Responsive */
.website-table {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.website-table table {
    width: 100%;
    border-collapse: collapse;
}

.website-table th,
.website-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.website-table th {
    background: #f9fafb;
    font-weight: 600;
    color: var(--text-dark);
}

.website-table tr:last-child td {
    border-bottom: none;
}

/* Filter Section */
.filter-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Icons in pagination - Fix huge arrow issue */
.pagination i,
.pagination .ri-arrow-left-s-line,
.pagination .ri-arrow-right-s-line {
    font-size: 1rem !important;
    width: auto !important;
    height: auto !important;
}

/* Pagination Links */
.pagination {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    min-width: 40px;
    background: white;
}

.pagination a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination .active span,
.pagination span[aria-current="page"] {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination svg {
    width: 16px !important;
    height: 16px !important;
}

/* Mobile Responsive - Websites Page */
@media (max-width: 768px) {

    /* Table horizontal scroll */
    .website-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 8px;
    }

    .website-table table {
        min-width: 900px;
    }

    /* Title row stacking */
    .title-row {
        flex-direction: column !important;
        gap: 1rem;
        align-items: stretch !important;
    }

    .title-row .btn {
        width: 100%;
        justify-content: center;
    }

    /* Filter responsive */
    .filter-section {
        padding: 1rem;
    }

    .filter-grid {
        grid-template-columns: 1fr !important;
    }

    .filter-actions {
        flex-direction: column;
    }

    .filter-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Results info */
    .results-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Pagination mobile */
    .pagination {
        gap: 0.25rem;
    }

    .pagination a,
    .pagination span {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        min-width: 36px;
    }

    /* Fix arrow icons */
    .pagination svg {
        width: 14px !important;
        height: 14px !important;
    }

    /* Section title */
    .section-title {
        font-size: 1.25rem !important;
    }
}