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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 35px;
    font-weight: 300;
    color: white;
}




/* MVP Section */
.mvp-section {
    padding: 100px 0;
    background: none;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}


.mvp-content {
    max-width: 900px;
    margin: 0 auto;
}

.mvp-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

/* MVP Grid */
.mvp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.mvp-column {
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    background: rgba(17, 32, 29, 0.25);
}

.mvp-column:hover {
    transform: translateY(-10px);
}

.mvp-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fcC005;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.mvp-list {
    list-style: none;
}

.mvp-list li {
    padding: 12px 0;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.mvp-list li:last-child {
    border-bottom: none;
}

.mvp-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fcC005;
    font-weight: bold;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}


/* MVP Quaotes */





/* MVP Features */
.mvp-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mvp-feature {
    text-align: center;
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    background: rgba(17, 32, 29, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mvp-feature:hover {
    transform: translateY(-10px);
}

.mvp-feature i {
    font-size: 3rem;
    color: #fcC005;
    margin-bottom: 20px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.mvp-feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fcC005;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.mvp-feature p {
    color: white;
    font-size: 1rem;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

/* Who List */
.who-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.who-list li {
    padding: 15px 0;
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.who-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fcC005;
    font-weight: bold;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Approach Questions */
.approach-questions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.question {
    text-align: center;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    background: rgba(17, 32, 29, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(17, 32, 29, 0.25);
    min-height: 150px;
}

.question:hover {
    transform: translateY(-10px);
}


.number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fcC005;
    margin-bottom: 15px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.question p {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
   
}

.approach-conclusion {
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
    
}

.approach-conclusion a {
    color: #fcC005;
    text-decoration: underline;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.approach-conclusion a:hover {
    text-decoration: underline;
    color: #fff;
}

/* Value Section */
.value-section {
    padding: 100px 0;
    background: none;
    color: white;
    text-align: center;
}

.value-content {
    max-width: 900px;
    margin: 0 auto;
}

.value-intro {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mvp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .quote-text {
    font-size: 1.2rem;
 
}

.quote-card {
   
    margin: 40px auto;

}
    
    .mvp-features {
        grid-template-columns: 1fr;
    }
    
    .approach-questions {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .mvp-section {
        padding: 60px 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll animations */
.mvp-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.mvp-section.visible {
    opacity: 1;
    transform: translateY(0);
}