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

.section {
    margin-bottom: 60px;
}

.section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: normal;
    text-align: center;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 1.05em;
}

.project-overview {
    background: #f9f9f9;
    padding: 50px 20px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.overview-item {
    text-align: center;
    padding: 20px;
}

.overview-item h3 {
    font-size: 1.5em;
    color: #ff6b35;
    margin-bottom: 10px;
}

.overview-item p {
    color: #666;
    font-size: 1em;
}

.design-showcase {
    background: white;
    padding: 50px 20px;
}

.design-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.design-item {
    text-align: center;
}

.design-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.design-item h3 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 8px;
}

.design-item p {
    color: #666;
    font-size: 0.95em;
}

.full-width-image {
    width: 100%;
    height: 500px;
    max-width: 1100px;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    object-fit: cover;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-image {
    width: 100%;
    /*height: 200px;*/
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    color: #ccc;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.3em;
    margin-bottom: 12px;
    font-weight: normal;
    color: #ff6b35;
}

.card-content p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.7;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    font-size: 1.05em;
}

.text-content p {
    margin-bottom: 20px;
}

.text-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.text-content li {
    margin-bottom: 12px;
}

.cta-section {
    background: #ff6b35;
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #ff6b35;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
}

.stats {
    background: #2c3e50;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item h3 {
    font-size: 2.5em;
    color: #ff6b35;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1em;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8em;
    }

    .section h2 {
        font-size: 1.6em;
    }

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

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

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