/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0f172a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #94a3b8;
}

a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #93c5fd;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1e293b;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f1f5f9;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #cbd5e1;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #60a5fa;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    border-radius: 1px;
}

.cta-button {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.3);
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #cbd5e1;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.primary-button {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(96, 165, 250, 0.4);
    color: white;
}

.primary-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.secondary-button {
    background: transparent;
    color: #cbd5e1;
    padding: 1rem 2rem;
    border: 2px solid #334155;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    border-color: #60a5fa;
    color: #60a5fa;
    transform: translateY(-2px);
}

.secondary-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.code-preview {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.code-header {
    background: #334155;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.code-dots {
    display: flex;
    gap: 0.5rem;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #64748b;
}

.code-dots span:nth-child(1) { background: #ef4444; }
.code-dots span:nth-child(2) { background: #f59e0b; }
.code-dots span:nth-child(3) { background: #10b981; }

.code-title {
    color: #cbd5e1;
    font-weight: 500;
}

.code-content {
    padding: 1.5rem;
}

.code-content pre {
    color: #e2e8f0;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    overflow-x: auto;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 41, 59, 0.3) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #60a5fa;
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-card h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #f1f5f9;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #94a3b8;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: #0f172a;
    border-top: 1px solid #1e293b;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #64748b;
    line-height: 1.6;
}

.footer-section h4 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
}

/* Page Sections */
.page-section {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 3rem;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #60a5fa;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(96, 165, 250, 0.05);
}

.faq-question h3 {
    color: #f1f5f9;
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #60a5fa;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 16px;
}

.faq-cta h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.faq-cta p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

/* Blog Styles */
.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.featured-post:hover {
    border-color: #60a5fa;
    transform: translateY(-5px);
}

.post-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.post-category {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.post-date {
    color: #64748b;
    font-size: 0.875rem;
}

.post-content h2 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.post-content p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #60a5fa;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #93c5fd;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: #60a5fa;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-category {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-date {
    color: #64748b;
    font-size: 0.75rem;
}

.blog-content h3 {
    color: #f1f5f9;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.blog-content p {
    color: #94a3b8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-section {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.newsletter-content h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid #334155;
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #60a5fa;
}

/* Blog Post Styles */
.blog-post {
    padding: 8rem 0 4rem;
}

.blog-post .container {
    max-width: 800px;
}

.post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.post-header .post-meta {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.post-read-time {
    color: #64748b;
    font-size: 0.875rem;
}

.post-header h1 {
    font-size: 2.5rem;
    color: #f1f5f9;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

.blog-post .post-image {
    margin-bottom: 3rem;
    border-radius: 16px;
    overflow: hidden;
}

.blog-post .post-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-post .post-content {
    padding: 0;
}

.blog-post .post-content h2 {
    color: #f1f5f9;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post .post-content h3 {
    color: #f1f5f9;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-post .post-content p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-post .post-content ul,
.blog-post .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post .post-content li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.blog-post .post-content blockquote {
    background: rgba(30, 41, 59, 0.5);
    border-left: 4px solid #60a5fa;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.blog-post .post-content blockquote p {
    color: #cbd5e1;
    font-style: italic;
    margin: 0;
}

.code-block {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    margin: 2rem 0;
    overflow: hidden;
}

.code-header {
    background: #334155;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #cbd5e1;
}

.copy-button {
    background: transparent;
    border: 1px solid #475569;
    color: #cbd5e1;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-button:hover {
    border-color: #60a5fa;
    color: #60a5fa;
}

.code-block pre {
    padding: 1.5rem;
    overflow-x: auto;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.post-cta {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
}

.post-cta h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.post-cta p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.post-footer {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
}

.tag {
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-share span {
    color: #64748b;
    font-size: 0.875rem;
}

.share-link {
    color: #60a5fa;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Legal Content Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: #f1f5f9;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-section li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
}

.legal-footer p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #60a5fa;
    transform: translateY(-2px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-card h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #94a3b8;
    margin-bottom: 1rem;
}

.contact-link {
    color: #60a5fa;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #93c5fd;
}

.contact-address {
    color: #94a3b8;
    font-style: normal;
    line-height: 1.6;
}

.contact-hours {
    color: #cbd5e1;
    font-weight: 500;
    margin: 0;
}

.contact-form-section {
    display: flex;
    flex-direction: column;
}

.contact-form-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 2rem;
}

.contact-form-card h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.contact-form-card p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #f1f5f9;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #e2e8f0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #60a5fa;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-faq {
    background: rgba(30, 41, 59, 0.3);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.contact-faq h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.contact-faq p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.contact-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-resource {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-resource:hover {
    border-color: #60a5fa;
    transform: translateY(-2px);
}

.resource-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-resource h4 {
    color: #f1f5f9;
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.contact-resource p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.875rem;
    text-align: left;
}

/* Documentation Styles */
.docs-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 100vh;
    padding-top: 80px;
}

.docs-sidebar {
    background: rgba(15, 23, 42, 0.8);
    border-right: 1px solid #1e293b;
    padding: 2rem;
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.sidebar-content h3 {
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.docs-nav .nav-section {
    margin-bottom: 2rem;
}

.docs-nav .nav-section h4 {
    color: #cbd5e1;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.docs-nav ul {
    list-style: none;
}

.docs-nav ul li {
    margin-bottom: 0.5rem;
}

.docs-nav .nav-link {
    color: #94a3b8;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
}

.docs-nav .nav-link:hover,
.docs-nav .nav-link.active {
    color: #60a5fa;
}

.docs-content {
    padding: 2rem 3rem;
    max-width: none;
}

.docs-section {
    margin-bottom: 4rem;
}

.docs-section h1 {
    color: #f1f5f9;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.docs-section h2 {
    color: #f1f5f9;
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.docs-section p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.docs-section ul,
.docs-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.docs-section li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.info-box,
.warning-box {
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.info-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.warning-box {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.info-box h4,
.warning-box h4 {
    color: #f1f5f9;
    margin-bottom: 0.75rem;
}

.info-box p,
.warning-box p {
    margin: 0;
    color: #cbd5e1;
}

.endpoint-box {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.method.post {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.endpoint-box code {
    color: #e2e8f0;
    font-family: 'Monaco', 'Menlo', monospace;
}

.params-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.params-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

.params-table th,
.params-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #334155;
}

.params-table th {
    background: #334155;
    color: #f1f5f9;
    font-weight: 600;
}

.params-table td {
    color: #94a3b8;
}

.params-table code {
    background: rgba(51, 65, 85, 0.5);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
    color: #60a5fa;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .docs-container {
        grid-template-columns: 250px 1fr;
    }
    
    .docs-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .post-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .docs-container {
        grid-template-columns: 1fr;
    }
    
    .docs-sidebar {
        display: none;
    }
    
    .docs-content {
        padding: 1rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-links {
        grid-template-columns: 1fr;
    }
    
    .contact-resource {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-resource p {
        text-align: center;
    }
    
    .params-table {
        font-size: 0.875rem;
    }
    
    .params-table th,
    .params-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .blog-post .post-header h1 {
        font-size: 2rem;
    }
    
    .post-subtitle {
        font-size: 1.1rem;
    }
}