/**
 * Page Construction Test Styles
 */

/* Proposal Section Styles */
.proposal_section {
    padding: 60px 0;
    background-color: #fff;
}

.proposal_container {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    background-color: #d96d6a;
    color: #fff;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.proposal_header {
    margin-bottom: 50px;
}

.proposal_title {
    font-size: 3em;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
}

.proposal_subtitle {
    font-size: 2em;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
}

.proposal_caption {
    font-size: 1.2em;
    color: #fff;
    font-weight: 400;
    margin-bottom: 30px;
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
}

.proposal_content {
    background-color: #fff;
    color: #d96d6a;
    font-size: 1.1em;
    line-height: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
}

/* QA Cards Styles */
.qa_card {
    border: 2px solid #d96d6a;
    padding: 50px 30px;
    width: 430px;
    background-color: #fff;
    text-align: center;
}

.qa_card img {
    max-width: 100px;
    margin-bottom: 20px;
    height: 100px;
    object-fit: cover;
}

.qa_card h3 {
    color: #333;
    font-size: 1.2em;
    margin: 15px 0 10px 0;
    font-weight: 700;
}

.qa_card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.qa_card li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9em;
    line-height: 1.4;
}

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

/* Mobile optimization for Proposal Section */
@media (max-width: 768px) {
    .proposal_title {
        font-size: 2.5em;
    }

    .proposal_subtitle {
        font-size: 1.8em;
    }

    .proposal_container {
        padding: 30px 20px;
    }

    .proposal_content {
        font-size: 1em;
        padding: 15px;
    }

    .qa_card h3 {
        font-size: 1.1em;
    }

    .qa_card li {
        font-size: 0.85em;
    }
}