    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f9f9f9;
        color: #333;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    .container {
        max-width: 1200px;
        margin: 50px auto;
        padding: 0 20px;
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
    }

    /* Main Project Section */
    .project-main {
        flex: 2;
        background-color: #fff;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .project-title {
        font-size: 2em;
        font-weight: 700;
        color: #222;
    }

    .project-desc ul {
        margin: 10px 0;
        padding-left: 20px;
        list-style-type: disc;
        color: #555;
        line-height: 1.6;
    }

    .project-details {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .project-detail {
        background-color: #f5f5f5;
        padding: 10px 15px;
        border-radius: 8px;
        font-weight: 500;
        font-size: 0.95em;
    }

    .project-button a {
        display: inline-block;
        padding: 12px 25px;
        background-color: #3498db;
        color: #fff;
        border-radius: 8px;
        font-weight: 600;
        transition: background 0.3s, transform 0.3s;
    }

    .project-button a:hover {
        background-color: #217dbb;
        transform: scale(1.05);
    }

    .project-image {
        width: 100%;
        border-radius: 12px;
        max-height: 400px;
        object-fit: cover;
        margin-top: 20px;
    }

    /* Aside Section */
    .project-aside {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .aside-title {
        font-size: 1.5em;
        font-weight: 600;
        margin-bottom: 10px;
        color: #222;
    }

    .aside-card {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .aside-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    }

    .aside-card img {
        width: 100%;
        height: 120px;
        object-fit: cover;
    }

    .aside-card-content {
        padding: 10px 15px;
    }

    .aside-card-title {
        font-weight: 600;
        font-size: 1em;
        color: #222;
        margin-bottom: 5px;
    }

    .aside-card-desc {
        font-size: 0.9em;
        color: #555;
    }

    /* FAQ Section */
    .faq-section {
        margin-top: 50px;
        background-color: #fff;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .faq-title {
        font-size: 1.8em;
        font-weight: 700;
        margin-bottom: 20px;
        color: #222;
    }

    .faq-item {
        margin-bottom: 15px;
    }

    .faq-item h4 {
        font-size: 1.1em;
        font-weight: 600;
        margin-bottom: 5px;
        color: #3498db;
    }

    .faq-item p {
        font-size: 0.95em;
        color: #555;
        line-height: 1.6;
        margin: 0;
    }

    @media (max-width: 900px) {
        .container {
            flex-direction: column;
        }

        .project-main, .project-aside {
            flex: 1;
        }
    }