.project-hero {
    padding: 4rem 0 6rem;
    background-color: #fff;
}

.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #FBDA5F;
}

.project-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.project-tags {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.project-tags .tag {
    background-color: #FBDA5F;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.project-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
    line-height: 1.2;
}

.project-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 3rem;
}

.project-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.meta-item {
    text-align: left;
}

.meta-item strong {
    display: block;
    color: #000;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.approach-step {
    padding: 6rem 0;
    background-color: #fff;
}

.approach-step.alt-bg {
    background-color: #f8f9fa;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step-number-large {
    width: 80px;
    height: 80px;
    background-color: #FBDA5F;
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-title-wrapper {
    flex: 1;
}

.step-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.step-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin: 0;
}

.step-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 1.5rem;
}

.content-section p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.challenge-list,
.value-list,
.analysis-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.challenge-list li,
.analysis-list li {
    background: #fff3cd;
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
}

.value-list li {
    background: #d1f2eb;
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    border-left: 4px solid #28a745;
    border-radius: 8px;
}

.value-list strong {
    color: #155724;
}

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

.arch-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.arch-item h4 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.arch-item p {
    color: #555;
    font-size: 1rem;
    margin: 0;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #FBDA5F;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: #FBDA5F;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #FBDA5F;
}

.timeline-content h4 {
    color: #000;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #555;
    font-size: 1rem;
    margin: 0;
}

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

.support-item {
    text-align: center;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.support-icon {
    width: 48px;
    height: 48px;
    background: #FBDA5F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #000;
}

.support-item h4 {
    color: #000;
    margin-bottom: 0.5rem;
}

.support-item p {
    color: #555;
    font-size: 1rem;
    margin: 0;
}

.project-results {
    padding: 8rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.results-intro {
    font-size: 1.125rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.result-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.result-card.highlight {
    background: linear-gradient(135deg, #FBDA5F 0%, #F5D045 100%);
    color: #000;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

.result-card.highlight .result-number {
    color: #000;
}

.result-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.result-card.highlight h3 {
    color: #000;
}

.result-card p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.result-card.highlight p {
    color: #333;
}

.testimonial {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content {
    text-align: center;
}

.quote-icon {
    margin-bottom: 1.5rem;
}

.testimonial blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-author strong {
    display: block;
    color: #000;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 1rem;
}

.project-cta {
    padding: 6rem 0;
    background-color: #000;
    color: #fff;
    text-align: center;
}

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

.cta-content p {
    color: #ccc;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

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