/* CSS variables for the color scheme */
:root {
    --primary-green-light: #e8f5e9;
    --primary-green: #8bc34a;
    --primary-green-dark: #689f38;
    --text-dark: #212121;
    --text-light: #757575;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --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);
}

/* Basic Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f9fafb;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 50;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    padding-top: 5px;
}

.nav-links {
    display: none;
}

.nav-links a,
.nav-auth a {
    color: var(--text-light);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-auth a:hover {
    color: var(--primary-green);
}

.nav-auth {
    display: none;
}

.desktop-nav {
    display: none;
}

.desktop-nav a {
    padding: 0.5rem 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

.desktop-nav a:hover {
    color: var(--primary-green);
}

.desktop-nav a.active {
    color: var(--primary-green-dark);
    border-bottom-color: var(--primary-green);
    font-weight: 600;
}

.mobile-menu-button {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-light);
}

.mobile-menu-button:hover {
    color: var(--primary-green);
}

.mobile-menu {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-light);
    font-weight: 500;
}

.mobile-menu hr {
    margin: 0.5rem 0;
    border-color: var(--border-color);
}

.mobile-menu a.btn-logout {
    margin-top: 0.5rem;
    text-align: center;
}

      .text-danger {
        color: #b91c1c; /* A red color from your theme */
        font-weight: 500;
        font-size: 0.85rem;
      }
      .text-danger:hover {
        color: #991b1b;
        text-decoration: underline;
      }


/* Buttons */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: #e5e7eb;
    color: #374151;
}
.btn-secondary:hover {
    background-color: #d1d5db;
}

.btn-danger {
    background-color: #fee2e2;
    color: #b91c1c;
}
.btn-danger:hover {
    background-color: #fecaca;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-logout {
    background-color: var(--primary-green);
    color: white;
    border-radius: 9999px;
    transition: background-color 0.3s ease;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
}

.btn-logout:hover {
    background-color: var(--primary-green-dark);
    color: white;
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-green-light);
    padding: 3rem 0;
}

.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 48rem;
    margin: 1rem auto 0;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Login Form */
.login-card {
    background-color: var(--primary-green);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    margin: 0 auto;
}
.login-card label {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.login-card input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.25rem;
    border: 1px solid var(--primary-green);
    margin-bottom: 1rem;
}
.login-card .btn {
    width: 100%;
    background-color: var(--primary-green-dark);
    color: var(--white);
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    font-size: 1.1rem;
}
 .login-card .btn:hover {
    background-color: var(--primary-green);
    border: 1px solid var(--white);
}
.login-links {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.875rem;
}
.login-links a {
    color: var(--primary-green-light);
    text-decoration: underline;
}
.login-links a:hover {
    color: var(--white);
}

/* Sections General Styling */
.section {
    padding: 5rem 0;
}
.section-bg {
    background-color: var(--primary-green-light);
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
}
.section-header p {
    margin-top: 0.5rem;
    font-size: 1.125rem;
    color: var(--text-light);
}

/* How It Works Section */
.steps-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}

.step .icon-wrapper {
    background-color: var(--primary-green-light);
    color: var(--primary-green-dark);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step p {
     color: var(--text-light);
}

/* Features/Ways to Earn Section */
.features-grid {
    display: grid;
    gap: 2rem;
}
.feature-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.feature-card svg {
    margin-bottom: 1rem;
}
 .feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.feature-card p {
     color: var(--text-light);
}


/* Main Content */
.main-content {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    flex-grow: 1;
}

.main-content > *:not(:last-child) {
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.page-header p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

/* Card Styles */
.card {
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.card-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green-dark);
    margin: 0;
}

.card-blue {
    background-color: #e3f2fd; /* A light blue background */
    border: 1px solid #90caf9;
}
.card-blue .card-title {
    color: #1565c0; /* A darker blue for the title */
    border-bottom-color: #bbdefb;
}

/* Site Card Specifics */
.site-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.site-card.card {
    margin-bottom: 0;
}

.site-card .site-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin:0;
}

.site-card .site-id {
    font-size: 0.875rem;
    color: var(--text-light);
}

.site-card .site-status {
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.site-card .status-active {
    background-color: var(--primary-green-light);
    color: var(--primary-green-dark);
}

.site-card .status-paused {
    background-color: #fffbeb;
    color: #d97706;
}

.site-card-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

.site-stat {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 0.25rem 0;
}

.site-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}


/* Forms */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}

.form-group input:focus, .form-group select:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px var(--primary-green-light);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

.sidebar > *:not(:last-child) {
    margin-bottom: 1.5rem;
}

.dashboard-main > *:not(:last-child) {
    margin-bottom: 1.5rem;
}

.stats-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 1.5rem;
}

.stats-grid-3c {
     display: grid;
     /* This is the key change: creates 3 equal-width columns */
     grid-template-columns: repeat(3, 1fr);
     gap: 1.5rem; /* The space between the cards */
     width: 100%;
     max-width: 1200px; /* An optional max-width for very large screens */
}

/* Reusable Card Styles */
.stat-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    padding: 1.5rem;
}
.stat-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-top: 0;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-green-light);
    padding-bottom: 0.5rem;
}
.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
 .stat-item:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}
.stat-item .label {
    color: var(--text-light);
}
.stat-item .value {
    font-weight: 600;
    color: var(--text-dark);
    word-break: break-all;
}
.stat-item .value a {
    color: var(--primary-green);
    text-decoration: underline;
    font-weight: 600;
}
.stat-item .value a:hover {
    color: var(--primary-green-dark);
}

/* Leaderboards */
.leaderboards-grid {
    display: grid;
    gap: 2rem;
}
.leaderboard-card {
    background-color: var(--primary-green-light);
    border: 2px solid var(--primary-green);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
}
.leaderboard-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}
.leaderboard-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.leaderboard-list li {
    background-color: var(--white);
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.leaderboard-list li span {
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-right: 0.75rem;
}

.winners-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.winner-item {
    background-color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    box-shadow: var(--shadow);
}
.winner-item strong {
    color: var(--primary-green-dark);
    font-weight: 700;
}

/* Sales Market Table */
.table-responsive {
    overflow-x: auto;
}
.sales-table {
    width: 100%;
    text-align: left;
    font-size: 0.875rem;
    border-collapse: collapse;
}
.sales-table thead {
    background-color: #f3f4f6;
    font-size: 0.75rem;
    color: #4b5563;
    text-transform: uppercase;
}
.sales-table th, .sales-table td {
    padding: 0.75rem 1rem;
}
.sales-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}
.sales-table tbody tr:nth-child(even) {
    background-color: #f9fafb;
}
.sales-table td {
    vertical-align: middle;
}
.sales-table .buy-button-btc {
     background-color: #f7931a;
     color: white;
     font-size: 0.75rem;
     font-weight: bold;
     padding: 0.25rem 0.5rem;
     border: none;
     border-radius: 0.25rem;
     cursor: pointer;
}
.sales-table .buy-button-img {
    display: block;
    margin: 0 auto;
}

/* Promotions */
.promo-card {
     background-color: var(--primary-green-light);
     border: 1px solid var(--primary-green);
}
.promo-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Payout Options Section */
.payouts-section {
     padding: 4rem 0;
}
.payout-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.payout-logos img {
    height: 48px;
    object-fit: contain;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    gap: 2rem;
}
.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}
.testimonial-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
}
.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 1rem;
}
.testimonial-author .name {
    font-weight: 600;
}
 .testimonial-author .meta {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}
.faq-item {
    background-color: var(--primary-green-light);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}
.faq-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    background: none;
    border: none;
    cursor: pointer;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-icon.rotate-180 {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.25rem;
    color: var(--text-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-content p {
    padding-bottom: 1.25rem;
}
.faq-content a {
    color: var(--primary-green-dark);
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
}
 .cta-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
}
.cta-section p {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: var(--primary-green-light);
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}
.cta-section .btn {
     margin-top: 2rem;
     background-color: var(--white);
     color: var(--primary-green);
}
 .cta-section .btn:hover {
    background-color: var(--primary-green-light);
}

/* Register Page */
 .join-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.join-form-grid {
    display: grid;
    gap: 1.5rem;
}

.join-form-container label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.join-form-container input[type="text"],
.join-form-container input[type="email"],
.join-form-container input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.25rem;
    border: 1px solid var(--border-color);
}
.preferences-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.preferences-container > h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.preferences-container > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.preference-category {
    background-color: var(--primary-green-light);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
}
.preference-category h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}
.preference-grid {
    padding-bottom: 1rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
}
.preference-grid label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
}

      /* Cashout Page */
      /* Added some specific styles for the cashout options for better layout */
      .cashout-option {
        background-color: #f9fafb;
        border: 1px solid var(--border-color);
        border-radius: 0.5rem;
        padding: 1rem;
        margin-bottom: 1rem;
        display: flex;
        /* This is the updated alignment property */
        align-items: center;
        gap: 1rem;
      }
      .cashout-option input[type="radio"] {
        /* margin-top was removed as it's not needed with align-items: center */
        flex-shrink: 0;
      }
      .cashout-option .details {
        flex-grow: 1;
      }
      .cashout-option label {
        font-weight: 600;
        display: block;
        margin-bottom: 0.5rem;
      }
      .cashout-option .form-group {
        margin-bottom: 0.5rem;
      }
      .cashout-option .form-group:last-of-type {
        margin-bottom: 0;
      }


/* Footer */
.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 2rem 0;
    flex-shrink: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.footer-grid h3, .footer-grid h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.footer-grid p, .footer-grid a {
     color: #9ca3af;
}
.footer-grid a:hover {
    color: white;
}
.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #4b5563;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Promo Contest Area */
.promo-card {
     background-color: var(--primary-green-light);
     border: 1px solid var(--primary-green);
}
.promo-grid {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap on small screens */
    gap: 1.5rem;
}
.promo-rules {
    flex: 2; /* Takes up twice the space of the stats column */
    min-width: 280px; /* Ensures it doesn't get too squished */
}
.promo-user-stats {
    flex: 1; /* Takes up one part of the space */
    min-width: 220px;
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.promo-rules-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.promo-rules-list li {
    display: grid;
    grid-template-columns: auto auto 1fr; /* icon, reward, description */
    align-items: start; /* Aligns items to the top */
    gap: 0.6rem;
    font-size: 0.9rem;
}

.promo-rules-list .promo-reward {
    font-weight: 700;
}

.promo-rules-list .promo-description {
    /* This style is optional but can help with alignment */
    line-height: 1.4; 
}
.promo-rules-list svg {
    color: var(--primary-green-dark);
    flex-shrink: 0;
}
.promo-prizes {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
}
.promo-ticket-img {
    max-width: 80px;
    margin-bottom: 1rem;
}
.promo-stat-item {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.promo-stat-item .label {
    color: var(--text-light);
}
.promo-stat-item .value {
    font-weight: 700;
}
.promo-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 1rem 0;
}
.promo-rank-info {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}


/* Responsive Styles */
@media (min-width: 540px) {
    .preference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 640px) {
    .site-card-body {
       grid-template-columns: repeat(2, 1fr);
    }
    .form-grid {
       grid-template-columns: repeat(2, 1fr);
    }
    .preference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .site-card-grid {
       grid-template-columns: repeat(2, 1fr);
   }
    .nav-links {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .nav-auth {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .hero-grid {
        grid-template-columns: 1fr 400px;
        gap: 3rem;
    }
    .hero-content {
        text-align: left;
    }
     .hero-content h1 {
        font-size: 3rem;
    }
    .hero-actions {
        justify-content: flex-start;
    }
    .steps-grid {
       grid-template-columns: repeat(3, 1fr);
   }
   .features-grid {
       grid-template-columns: repeat(2, 1fr);
   }
    .leaderboards-grid {
       grid-template-columns: repeat(2, 1fr);
       align-items: start;
   }
    .testimonials-grid {
       grid-template-columns: repeat(2, 1fr);
   }
   .mobile-menu-button {
        display: none;
    }
   .join-form-grid {
       grid-template-columns: repeat(2, 1fr);
   }
   .preference-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
         padding-left: 1.5rem;
         padding-right: 1.5rem;
    }
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .mobile-menu-button {
        display: none;
    }
    .dashboard-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .sidebar {
        grid-column: span 1 / span 1;
    }
    .dashboard-main {
        grid-column: span 2 / span 2;
    }
    .hero-content h1 {
        font-size: 3.75rem;
    }
    .hero-content p {
        font-size: 1.25rem;
    }
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
     .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
     .preference-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .stats-grid-3c {
        grid-template-columns: 1fr;
    }
}



/* Previous Design CSS */
.orange {background-color: #ffe7b2;color: #df5900;}