.process-section, .features-section, .credential-section, .contact-cta {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* 論文指導頁面的 Hero 區域背景 */
#hero.with-bg-image {
    background-image: url('Gemini_Generated_Image_84jw5d84jw5d84jw.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#hero.with-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

#hero.with-bg-image .hero-content {
    position: relative;
    z-index: 2;
}

#hero.with-bg-image .hero-content h1,
#hero.with-bg-image .hero-content .hero-tagline {
    color: #333333;
}

#hero .hero-tagline {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    letter-spacing: 0.3rem;
    opacity: 0.95;
}

.process-section {
    background: #ffffff;
}

.process-section h2, .features-section h2, .credential-section h2, .contact-cta h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333333;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.process-item {
    background: #f5f5f5;
    padding: 2rem 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.process-item:nth-child(even) {
    background: #ffffff;
}

.process-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.process-number {
    width: 50px;
    height: 50px;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-item h3 {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 0.2rem;
    font-weight: normal;
}

.process-item h3:last-of-type {
    margin-bottom: 1rem;
}

.process-item p {
    color: #666666;
    line-height: 1.8;
    font-size: 0.9rem;
    text-align: center;
}

.features-section {
    background: #ffffff;
}

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

.feature-item {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e8e8e8;
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: #4a90e2;
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.15);
}

.feature-item h3 {
    font-size: 1.4rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666666;
    line-height: 1.6;
}

.credential-section {
    background: #f8f9fa;
}

.certificate-container {
    text-align: center;
    margin-top: 2rem;
}

.certificate-container img {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-cta {
    background: transparent;
    color: #333333;
    text-align: center;
}

.contact-cta h2 {
    color: #333333;
}

.contact-cta p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.cta-button {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #34495e;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-section h2, .features-section h2, .credential-section h2, .contact-cta h2 {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* FAQ 樣式 */
.faq-container {
    max-width: 900px;
    margin: 3rem auto;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666666;
    line-height: 1.8;
    text-align: left;
}

.faq-item ul {
    color: #666666;
    line-height: 1.8;
}

.faq-item ul li {
    margin-bottom: 0.5rem;
}

/* 諮詢前須知樣式 */
.notice-container {
    max-width: 900px;
    margin: 3rem auto;
}

.notice-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.notice-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.notice-item p {
    color: #333333;
    line-height: 1.8;
    text-align: left;
}

.notice-item ul {
    color: #333333;
    line-height: 1.8;
}

.notice-item ul li {
    margin-bottom: 0.5rem;
}

/* 視覺化流程圖樣式 */
.visual-process {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.visual-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.visual-icon {
    width: 100px;
    height: 100px;
    background: #4a90e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    border: 4px dotted #6ba3e8;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.visual-number {
    font-size: 2rem;
    font-weight: bold;
    color: #4a90e2;
}

.visual-label {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

.visual-arrow {
    font-size: 2rem;
    color: #4a90e2;
    margin: 0 0.5rem;
}

@media (max-width: 768px) {
    .visual-process {
        flex-direction: column;
    }
    
    .visual-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
}
