/* General Styles */
body {
    font-family: Arial, sans-serif;
    color: #4b5563;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 1rem;
    margin-top: 0;
}

.hero-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

/* Logo and Tagline */
.logo-container img {
    width: 100%;
    max-width: 450px;
}

.tagline {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4158D0, #C850C0, #FFCC70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.description {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.button {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.button.primary {
    background: #4158D0;
    color: white;
}

.button.secondary {
    background: white;
    color: #4158D0;
    border: 1px solid #4158D0;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px -2px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #4158D0; /* Consistent with gradient colors */
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Badges */
.badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    justify-content: flex-start;
}

/* Quick Start Section */
.quick-start {
    padding: 2rem 1rem;
    background: #f8fafc;
}

.quick-start h2 {
    font-size: 2rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.installation-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.step {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Frameworks Section */
.frameworks-section {
    padding: 2rem 1rem;
    text-align: left;
}

.frameworks-section h2 {
    font-size: 2rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.framework-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 1rem 0.5rem;
    }

    .tagline {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}
