/* 
   HyperQuantum CSS Styles
   A modern, sleek design inspired by x.ai with dark theme
*/

/* Base Styles & Reset */
:root {
    /* Color Variables */
    --primary-color: #6e00ff;
    --secondary-color: #00c2ff;
    --dark-color: #0a0a0a;
    --light-color: #f9f9f9;
    --gray-color: #888;
    --light-gray: #333;
    --dark-bg: #000000;
    --dark-card-bg: #111111;
    --dark-section-bg: #0a0a0a;
    --text-color: #f9f9f9;
    --gradient-start: #6e00ff;
    --gradient-end: #00c2ff;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Mono', monospace;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    letter-spacing: 0.03em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

h2 {
    font-size: 2.8rem;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

h3 {
    font-size: 1.6rem;
    letter-spacing: 0.01em;
}

p {
    margin-bottom: var(--spacing-md);
}

.gradient-text {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 0 10px rgba(110, 0, 255, 0.3);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(110, 0, 255, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 10px rgba(110, 0, 255, 0.2);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 15px rgba(110, 0, 255, 0.5);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(110, 0, 255, 0.2);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    margin-right: 10px;
}

.logo-text {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
}

.nav-links a {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

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

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: calc(var(--spacing-xl) * 1.5) 0 var(--spacing-xl);
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    color: var(--gray-color);
    letter-spacing: 0.02em;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-md);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.quantum-sphere {
    width: 400px;
    height: 400px;
    position: relative;
    animation: pulse 8s infinite alternate;
    background: radial-gradient(circle at center, rgba(110, 0, 255, 0.3), rgba(0, 194, 255, 0.1));
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(110, 0, 255, 0.5);
}

.quantum-sphere::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(110, 0, 255, 0.6);
    animation: rotate 20s linear infinite;
    box-shadow: 0 0 30px rgba(110, 0, 255, 0.4);
}

.quantum-sphere::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(0, 194, 255, 0.6);
    animation: rotate 15s linear infinite reverse;
    box-shadow: 0 0 30px rgba(0, 194, 255, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 50px rgba(110, 0, 255, 0.7);
    }
    100% {
        box-shadow: 0 0 80px rgba(0, 194, 255, 0.9);
    }
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* About Section */
.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--dark-section-bg);
}

/* Section Card Hover Effects */
.section-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    background-color: var(--dark-card-bg);
    border: 1px solid rgba(110, 0, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(110, 0, 255, 0.3);
    border-color: rgba(110, 0, 255, 0.3);
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(110, 0, 255, 0.1) 0%, 
                rgba(0, 0, 0, 0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.section-card:hover::before {
    opacity: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.feature p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
    background-color: var(--dark-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.feature-card {
    background-color: var(--dark-card-bg);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(110, 0, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(110, 0, 255, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(45deg, rgba(110, 0, 255, 0), rgba(0, 194, 255, 0));
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(110, 0, 255, 0.2),
        0 0 20px rgba(110, 0, 255, 0.4);
    border-color: rgba(110, 0, 255, 0.3);
}

.feature-card:hover:before {
    opacity: 1;
    background: linear-gradient(45deg, 
        rgba(110, 0, 255, 0.1) 0%, 
        rgba(0, 194, 255, 0.1) 50%, 
        rgba(110, 0, 255, 0.1) 100%);
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px rgba(110, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(110, 0, 255, 0.5), 0 0 40px rgba(0, 194, 255, 0.3);
    animation: pulse-icon 2s infinite alternate;
}

@keyframes pulse-icon {
    0% {
        box-shadow: 0 0 15px rgba(110, 0, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 25px rgba(0, 194, 255, 0.7);
    }
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.feature-card:hover h3 {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(110, 0, 255, 0.4);
}

.feature-card h3:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    transition: width 0.3s ease;
}

.feature-card:hover h3:after {
    width: 100%;
}

.feature-card p {
    color: var(--gray-color);
    margin-bottom: 0;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.feature-card:hover p {
    color: var(--text-color);
}

/* Technology Section */
.technology {
    padding: var(--spacing-xl) 0;
    background-color: var(--dark-section-bg);
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.tech-animation {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, rgba(110, 0, 255, 0.2), rgba(0, 194, 255, 0.2));
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(110, 0, 255, 0.3);
}

.tech-animation::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(110, 0, 255, 0.8) 0%, rgba(0, 194, 255, 0.2) 40%, rgba(0, 0, 0, 0) 70%);
    animation: techWave 8s linear infinite;
}

@keyframes techWave {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.tech-item {
    margin-bottom: var(--spacing-md);
}

.tech-item h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tech-item p {
    color: var(--gray-color);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

/* Roadmap Section */
.roadmap {
    padding: var(--spacing-xl) 0;
    background-color: var(--dark-bg);
}

.roadmap .section-header:hover h2 {
    text-shadow: 0 0 15px rgba(110, 0, 255, 0.5);
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(110, 0, 255, 0.5);
    transition: all 0.5s ease;
}

.timeline:hover::before {
    box-shadow: 0 0 20px rgba(110, 0, 255, 0.8), 0 0 40px rgba(0, 194, 255, 0.4);
    width: 6px;
}

.timeline-item {
    padding: var(--spacing-md) 0;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--dark-card-bg);
    border: 4px solid var(--gray-color);
    border-radius: 50%;
    top: calc(var(--spacing-md) + 15px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 10px rgba(110, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.timeline-item:hover::after {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 0 15px rgba(110, 0, 255, 0.5), 0 0 30px rgba(0, 194, 255, 0.3);
}

.timeline-item.completed::after {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(110, 0, 255, 0.5);
}

.timeline-item.active::after {
    background-color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.5);
    animation: pulse-marker 2s infinite alternate;
}

@keyframes pulse-marker {
    0% {
        box-shadow: 0 0 15px rgba(0, 194, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 25px rgba(110, 0, 255, 0.7);
    }
}

.timeline-content {
    width: 45%;
    padding: var(--spacing-md);
    background-color: var(--dark-card-bg);
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 15px rgba(110, 0, 255, 0.1);
    position: relative;
    border: 1px solid rgba(110, 0, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.timeline-content:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 
        0 15px 30px rgba(110, 0, 255, 0.3),
        0 5px 15px rgba(0, 194, 255, 0.2);
    border-color: rgba(110, 0, 255, 0.3);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.timeline-content ul {
    padding-left: var(--spacing-md);
    list-style-type: disc;
}

.timeline-content ul li {
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

/* Tokenomics Section */
.tokenomics-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.tokenomics-card {
    background-color: var(--dark-card-bg);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 10px 30px rgba(110, 0, 255, 0.2);
    border: 1px solid rgba(110, 0, 255, 0.2);
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.tokenomics-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.tokenomics-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.tokenomics-item h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tokenomics-item p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

.contract-address {
    font-size: 1rem !important;
    word-break: break-all;
    letter-spacing: 0.05em;
}

/* Newsletter Section */
.newsletter {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-family: 'Space Mono', monospace;
}

.newsletter-form .btn {
    background-color: var(--dark-color);
}

.newsletter-form .btn:hover {
    background-color: black;
}

/* Community Links */
.community-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.community-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.community-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
    background-color: var(--dark-color);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand p {
    color: var(--gray-color);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.02em;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

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

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

.footer-links h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-links ul li a {
    color: var(--gray-color);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-color);
    letter-spacing: 0.05em;
}

/* Card Particles */
.card-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
    transition: transform 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .nav-links, .cta-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero .container, .about-content, .tech-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .quantum-sphere {
        width: 300px;
        height: 300px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 31px;
    }
    
    .timeline-item::after {
        left: 31px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .tokenomics-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .community-links {
        flex-direction: column;
        align-items: center;
    }
}
/* Feature List Styling */
.feature-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: var(--gray-color);
}

.feature-list li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.feature-list li strong {
    color: var(--text-color);
    font-weight: 700;
}