/* CSS Variables for consistent colors */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --success-gradient: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-bg: #f8f9fa;
    --white-bg: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-radius: 15px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}



/* Hero Section */
.hero-section {
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-row {
    min-height: 85vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Logo */
.hero-logo {
    text-align: center;
    animation: fadeInDown 1s ease;
    margin-bottom: 1.5rem;
}

.hero-logo-img {
    max-width: 150px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.hero-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    animation: fadeInUp 1s ease;
    text-align: center;
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Badges */
.badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
    justify-content: center;
}

.badge {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.badge-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.badge-warning {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #212529;
}

.badge-info {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
}

/* CTA Buttons */
.cta-buttons {
    animation: fadeInUp 1s ease 0.6s both;
    text-align: center;
}

.btn {
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--success-gradient);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.4);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Price Display */
.price-display {
    animation: fadeInUp 1s ease 0.8s both;
    text-align: center;
}

.price-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-right: 0.6rem;
}

.price-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--warning-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Domain Showcase */
.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease 0.5s both;
}

.domain-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.domain-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.domain-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.domain-url {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    word-break: break-all;
}

.domain-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warning-color);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}

/* Features Section */
.features-section {
    background: var(--light-bg);
    padding: 3rem 0;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
    clear: both;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 3;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Pricing Section */
.pricing-section {
    background: var(--white-bg);
    padding: 5rem 0;
}

.pricing-table {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.table {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.table thead th {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 1.5rem 1rem;
    font-weight: 600;
}

.table tbody td {
    padding: 1.5rem 1rem;
    vertical-align: middle;
    border-color: rgba(0, 0, 0, 0.05);
}

.price-high {
    color: #dc3545;
    font-weight: 700;
    font-size: 1.2rem;
}

.price-our {
    color: #28a745;
    font-weight: 700;
    font-size: 1.5rem;
}

.table-success {
    background: rgba(40, 167, 69, 0.1);
}

/* Trust Section */
.trust-section {
    background: var(--light-bg);
    padding: 5rem 0;
}

.trust-benefits {
    list-style: none;
    padding: 0;
}

.trust-benefits li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.trust-benefits i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white-bg);
    padding: 5rem 0;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #ffc107;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
}

.author-info h5 {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background: var(--light-bg);
    padding: 5rem 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-gradient);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 2rem;
    background: white;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: var(--primary-gradient);
    padding: 5rem 0;
    position: relative;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Benefits List in Contact Section */
.contact-card .benefits-list {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.contact-card .benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.contact-card .benefit-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Limited Time Offer in Contact Section */
.contact-card .limited-offer {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-card .offer-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 1rem;
    text-shadow: none;
}

.contact-card .countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card .timer-item {
    background: var(--primary-gradient);
    border-radius: 10px;
    padding: 1rem;
    min-width: 70px;
    text-align: center;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-card .timer-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.contact-card .timer-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Button in Contact Section */
.contact-card .cta-section {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-card .btn-cta {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1.2rem 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 300px;
    max-width: 100%;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-card .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.6);
    color: white;
    background: linear-gradient(135deg, #20c997, #28a745);
}

/* Contact Emails in Contact Section */
.contact-card .contact-emails {
    text-align: center;
}

.contact-card .email-item {
    display: inline-flex;
    align-items: center;
    margin: 0 1rem 0.5rem;
    font-size: 1rem;
}

.contact-card .email-item i {
    margin-right: 0.5rem;
    color: #667eea;
}

.contact-card .email-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card .email-item a:hover {
    color: #667eea;
}

.contact-method {
    text-align: center;
    padding: 2rem;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.contact-method h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-method p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.divider {
    position: relative;
    margin: 2rem 0;
    text-align: center;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.divider span {
    background: white;
    padding: 0 2rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Container padding for mobile - consistent margins */
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        text-align: center;
    }

    /* Ensure consistent margins for all sections except pricing */
    .hero-section .container,
    .features-section .container,
    .trust-section .container,
    .testimonials-section .container,
    .faq-section .container,
    .contact-section .container,
    .footer .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    /* Hero Section Mobile */
    .hero-logo {
        margin-bottom: 1rem;
        text-align: center;
    }

    .hero-logo-img {
        max-width: 100px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        text-align: center;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .hero-section {
        min-height: 30vh;
        padding: 1rem 0;
        text-align: center;
    }

    .hero-row {
        min-height: 30vh;
    }

    .hero-content {
        padding: 1rem 0;
        max-width: 100%;
        text-align: center;
    }

    /* Features Section Mobile */
    .features-section {
        margin-top: 0.5rem;
        padding: 2rem 0;
        text-align: center;
    }

    .feature-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto 1rem;
    }

    .feature-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        text-align: center;
    }

    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: center;
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    /* Pricing Table Mobile */
    .pricing-section {
        text-align: center;
        padding: 3rem 0;
    }

    .pricing-section .container {
        padding: 0;
        max-width: 100%;
    }

    .pricing-section .row {
        margin: 0;
    }

    .pricing-section .col-lg-10 {
        padding: 0;
        max-width: 100%;
    }

    .pricing-table {
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .table {
        font-size: 0.8rem;
        text-align: center;
        margin: 0;
        width: 100%;
    }

    .table thead th {
        padding: 1rem 0.3rem;
        font-size: 0.75rem;
        text-align: center;
        white-space: nowrap;
    }

    .table tbody td {
        padding: 1rem 0.3rem;
        font-size: 0.8rem;
        text-align: center;
        white-space: nowrap;
    }

    .table tbody td:first-child {
        font-size: 0.7rem;
        word-break: break-word;
        white-space: normal;
        min-width: 120px;
    }

    .price-high, .price-our {
        font-size: 0.9rem;
        font-weight: 700;
    }

    .price-our {
        font-size: 1rem;
    }

    /* Trust Section Mobile */
    .trust-section {
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
        text-align: center;
    }

    .stat-card .stat-number {
        font-size: 2rem;
    }

    .trust-benefits {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: left;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        text-align: center;
    }

    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .author-image {
        width: 50px;
        height: 50px;
    }

    .testimonial-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    /* FAQ Mobile */
    .faq-section {
        text-align: center;
    }

    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
        text-align: left;
    }

    .accordion-body {
        padding: 1.5rem;
        font-size: 1rem;
        text-align: left;
    }

    /* Contact Section Mobile */
    .contact-section {
        text-align: center;
    }

    .contact-card {
        padding: 1.5rem;
        margin: 0;
        text-align: center;
    }

    .contact-card .benefits-list {
        max-width: 100%;
        margin-bottom: 1.5rem;
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-card .benefit-item {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        justify-content: flex-start;
    }

    .contact-card .offer-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .contact-card .countdown-timer {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .contact-card .timer-item {
        min-width: 50px;
        padding: 0.8rem 0.5rem;
        flex: 1;
        max-width: 70px;
        text-align: center;
    }

    .contact-card .timer-number {
        font-size: 1.3rem;
    }

    .contact-card .timer-label {
        font-size: 0.7rem;
    }

    .contact-card .cta-section {
        text-align: center;
    }

    .contact-card .btn-cta {
        min-width: auto;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        letter-spacing: 0.5px;
        margin: 1rem 0;
        text-align: center;
    }

    .contact-card .contact-emails {
        text-align: center;
    }

    .contact-card .email-item {
        display: block;
        margin: 0.5rem auto;
        text-align: center;
        max-width: 300px;
    }

    .contact-card .email-item a {
        font-size: 0.9rem;
        word-break: break-all;
        text-align: center;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 0;
        text-align: center;
    }

    .footer p {
        font-size: 0.9rem;
        margin: 0;
    }

    /* General Mobile Improvements */
    .btn {
        margin-bottom: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Ensure no horizontal scroll */
    body {
        overflow-x: hidden;
        width: 100%;
    }

    /* Fix any potential width issues */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Images responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Ensure all sections have consistent spacing */
    section {
        width: 100%;
        overflow-x: hidden;
    }

    /* Row and column fixes */
    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .col-lg-6, .col-lg-8, .col-lg-10, .col-md-4, .col-md-6 {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    /* Consistent smaller margins for very small screens */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-section .container,
    .features-section .container,
    .trust-section .container,
    .testimonials-section .container,
    .faq-section .container,
    .contact-section .container,
    .footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .contact-card {
        padding: 1rem;
        margin: 0;
    }

    .contact-card .countdown-timer {
        gap: 0.3rem;
    }

    .contact-card .timer-item {
        min-width: 45px;
        padding: 0.6rem 0.3rem;
    }

    .contact-card .timer-number {
        font-size: 1.1rem;
    }

    .contact-card .btn-cta {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }

    /* Extra small pricing table adjustments */
    .table {
        font-size: 0.7rem;
    }

    .table thead th {
        padding: 0.8rem 0.2rem;
        font-size: 0.65rem;
    }

    .table tbody td {
        padding: 0.8rem 0.2rem;
        font-size: 0.7rem;
    }

    .table tbody td:first-child {
        font-size: 0.6rem;
        min-width: 100px;
    }

    .price-high, .price-our {
        font-size: 0.8rem;
    }

    .price-our {
        font-size: 0.9rem;
    }
}
