.home-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    background-color: #000000;
}

.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    background-color: #000000;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(74, 222, 128, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #a0a0a0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #4ade80;
    color: #000000;
    border: 2px solid #4ade80;
}

.btn-primary:hover {
    background-color: #22c55e;
    border-color: #22c55e;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Services Section */
.services {
    background-color: #0a0a0a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(74, 222, 128, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #4ade80;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #a0a0a0;
}

.services-in-dev {
    margin-top: 60px;
}

.services-in-dev-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

/* Why Choose Us Section */
.why-us {
    background-color: #000000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    color: #4ade80;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: #a0a0a0;
}

/* FAQ Section */
.faq {
    background-color: #0a0a0a;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-toggle {
    color: #4ade80;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.7;
    color: #a0a0a0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 20px;
}

.cta {
    background-color: #000000;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: rgba(74, 222, 128, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(74, 222, 128, 0.1);
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 18px;
    color: #a0a0a0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.our-services {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.our-services-link {
    padding: 10px 12px;
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.try-it-out {
    color: #4ade80;
    border: 1px solid #4ade80;
}

.learn-more {
    background-color: #4ade80;
    color: #000000;
    border: 1px solid #4ade80;
}

.learn-more:hover {
    background-color: #22c55e;
    border-color: #22c55e;
}

.try-it-out:hover {
    background-color: rgba(74, 222, 128, 0.1)
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section {
        padding: 60px 20px;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .cta-title {
        font-size: 30px;
    }
}