:root {
    --primary-color: #CA3C3C;
    --secondary-color: #c73333;
    --accent-color: #ff006e;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #6c757d;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*font-family: var(--font-primary);*/
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    /* background-color: #1a1a2e; */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}




/*from solution of conflicts in signup page*/
/* Prevent global styles from affecting form elements */
/*#signupForm input,*/
/*#signupForm select,*/
/*#signupForm button,*/
/*#signupForm .form-control,*/
/*#signupForm .btn {*/
/*    all: unset;*/
/*    box-sizing: border-box;*/
/*}*/

/* Then let Bootstrap handle the styling */



/* Footer Styles */
.site-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.footer-logo i {
    margin-right: 10px;
    font-size: 28px;
}

.footer-about p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .btn {
    width: 100%;
    background: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.legal-links {
    margin-top: 10px;
}

.legal-links a {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.7);
}

.legal-links a:hover {
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        text-align: left;
    }
    
    .legal-links {
        margin-top: 15px;
    }
}





/* hero section*/
.hero{
    margin-top: 40px;
}


@media (max-width: 768px) {
    .hero{
    margin-top: 30px;
}
    
}







/* Why-us and Stats Section */
/* Why Choose Us Section */
.benefits-section {
    padding: 60px 0;
    background-color: #f9fafc;
    position: relative;
    overflow: hidden;
}

.benefits-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.section-header h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient);
    transition: var(--transition);
    z-index: -1;
}

.benefit-card:hover::before {
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(58, 134, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: white;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background: var(--gradient);
    padding: 60px 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.stats-section .section-header h2,
.stats-section .section-header .section-subtitle {
    color: white;
}

.stats-section .section-header h2 span {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: inherit;
    position: relative;
}

.stats-section .section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 0px 30px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 30px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }
}

@media (max-width: 576px) {
    .benefit-card {
        padding: 25px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}




/* Partner Benefits Section */
/*.partner-benefits {*/
/*    padding: 40px 0;*/
/*    background-color: white;*/
/*    position: relative;*/
/*}*/

/*.partner-benefits .container {*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    padding: 0 20px;*/
/*}*/

/*.center-align {*/
/*    text-align: center;*/
/*}*/

/*.benefits-container {*/
/*    margin-top: 60px;*/
/*}*/

/*.benefit-item {*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    align-items: center;*/
/*    gap: 50px;*/
/*    margin-bottom: 80px;*/
/*}*/

/*.benefit-item.reverse {*/
/*    flex-direction: row-reverse;*/
/*}*/

/*.benefit-content {*/
/*    flex: 1;*/
/*    padding: 30px;*/
/*    position: relative;*/
/*    z-index: 2;*/
/*}*/

/*.benefit-number {*/
/*    font-size: 5rem;*/
/*    font-weight: 800;*/
/*    color: rgba(58, 134, 255, 0.1);*/
/*    position: absolute;*/
/*    top: -20px;*/
/*    left: 20px;*/
/*    z-index: -1;*/
/*    line-height: 1;*/
/*}*/

/*.benefit-content h3 {*/
/*    font-size: 1.8rem;*/
/*    margin-bottom: 20px;*/
/*    color: var(--dark-color);*/
/*    position: relative;*/
/*    padding-bottom: 15px;*/
/*}*/

/*.benefit-content h3::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 60px;*/
/*    height: 3px;*/
/*    background: var(--gradient);*/
/*}*/

/*.benefit-content p {*/
/*    color: var(--text-light);*/
/*    margin-bottom: 25px;*/
/*    line-height: 1.8;*/
/*    font-size: 1.05rem;*/
/*}*/

/*.benefit-highlight {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*    background: rgba(58, 134, 255, 0.1);*/
/*    padding: 12px 20px;*/
/*    border-radius: 8px;*/
/*    width: fit-content;*/
/*}*/

/*.benefit-highlight i {*/
/*    color: var(--primary-color);*/
/*    font-size: 1.2rem;*/
/*}*/

/*.benefit-highlight span {*/
/*    font-weight: 500;*/
/*    color: var(--dark-color);*/
/*}*/

/*.benefit-image {*/
/*    flex: 1;*/
/*    position: relative;*/
/*    border-radius: 20px;*/
/*    overflow: hidden;*/
/*    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);*/
/*    min-height: 400px;*/
    height: 400px; /* change from min-height */ 
/*}*/

/*.benefit-image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    transition: transform 0.5s ease;width: 100%;*/
    display: block; /* fixes inline spacing */
/*    object-fit: cover;*/
/*    object-position: center;*/
/*    margin: 0;*/
/*    padding: 0;*/

/*}*/

/*.benefit-item:hover .benefit-image img {*/
/*    transform: scale(1.05);*/
/*}*/

/*.image-overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: linear-gradient(to right, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);*/
/*}*/

 /*Responsive Styles */
/*@media (max-width: 768px) {*/
/*    .benefit-item,*/
/*    .benefit-item.reverse {*/
/*        flex-direction: column;*/
/*        gap: 30px;*/
/*    }*/
    
/*    .benefit-image {*/
/*        width: 100%;*/
/*        min-height: 300px;*/
/*    }*/
    
/*    .benefit-content {*/
/*        padding: 20px 0;*/
/*    }*/
    
/*    .benefit-number {*/
/*        font-size: 4rem;*/
/*        top: -15px;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .partner-benefits {*/
/*        padding: 30px 0;*/
/*    }*/
    
/*    .benefit-content h3 {*/
/*        font-size: 1.5rem;*/
/*    }*/
    
/*    .benefit-item {*/
/*        margin-bottom: 60px;*/
/*    }*/
/*}*/

/*@media (max-width: 576px) {*/
/*    .benefit-number {*/
/*        font-size: 3rem;*/
/*    }*/
    
/*    .benefit-highlight {*/
/*        width: 100%;*/
/*    }*/
    
/*    .benefit-content h3::after {*/
/*        width: 40px;*/
/*    }*/
/*}*/




/* Recent Leads Carousel */
.recent-leads {
    padding: 40px 0;
    background-color: #f8fafc;
    position: relative;
}

.leads-carousel-container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

.leads-carousel {
    display: flex;
    gap: 25px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 20px 10px;
    margin: 0 -10px;
}

.lead-card {
    flex: 0 0 calc(25% - 20px);
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    scroll-snap-align: start;
    min-width: 280px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1rem;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: var(--primary-color);
    color: white;
}

    .carousel-nav.prev {
        left: 0;
    }

    .carousel-nav.next {
        right: 0;
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }

/*  */




/* Recent Leads Section */
.recent-leads {
    padding: 40px 0;
    background-color: #f8fafc;
}

.lead-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    scroll-snap-align: start;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.lead-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.lead-header {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.lead-header h3 {
    font-size: 16px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.lead-header h3 i {
    color: var(--primary-color);
    font-size: 0.8  rem;
}

.lead-badge {
    position: absolute;
    top: -10px;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.5rem;
    font-weight: 600;
}

.lead-badge.urgent {
    background: var(--accent-color);
}

.lead-details {
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.detail-item i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.lead-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-icons {
    display: flex;
    gap: 10px;
}

.icon-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.icon-btn.call {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.icon-btn.email {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.icon-btn:hover {
    transform: translateY(-3px);
}

.buy-now {
    padding: 8px 20px;
    font-size: 0.9rem;
    background: var(--gradient);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-prev,
.carousel-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: var(--primary-color);
    transition: var(--transition);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-color);
    color: white;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(58, 134, 255, 0.3);
    cursor: pointer;
}

.carousel-dots .dot.active {
    background: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .leads-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .recent-leads {
        padding: 30px 0;
    }
    
    .leads-carousel {
        grid-template-columns: 1fr;
    }
    
    .lead-card {
        min-width: 300px;
    }
}

@media (max-width: 576px) {
    .lead-actions {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .contact-icons {
        width: 100%;
        justify-content: flex-end;
    }
    
    .buy-now {
        width: 100%;
    }
}







/* pricing section */
/* Add to your styles.css */
/* Pricing Section */
.pricing-section {
    padding: 50px 0;
    background-color: #f8fafc;
    position: relative;
}

.pricing-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0 40px;
    font-weight: 500;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background: var(--gradient);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.discount-badge {
    background: var(--accent-color);
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-left: 5px;
}

.pricing-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.price {
    margin: 20px 0;
    position: relative;
}

.price span {
    display: block;
}

.monthly-price, .yearly-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
}

.yearly-price {
    display: none;
}

.period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-header p {
    color: var(--text-light);
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
}

.pricing-features li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.pricing-features li strong {
    color: var(--dark-color);
}

.pricing-footer {
    text-align: center;
}

.btn.outline-btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn.outline-btn:hover {
    background: var(--primary-color);
    color: white;
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--gradient);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
}

.pricing-footer-note {
    text-align: center;
    margin-top: 50px;
    color: var(--text-light);
}

.pricing-footer-note a {
    color: var(--primary-color);
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 40px auto 0;
    }
}

@media (max-width: 576px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .price {
        margin: 15px 0;
    }
    
    .monthly-price, .yearly-price {
        font-size: 2rem;
    }
}







































