@charset "utf-8";

/* Content Page Styles - Using black, white, yellow color scheme */

.content-section {
    background: #fff;
    padding: 80px 0;
}

.content-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-header {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid #E4D900;
}

.content-header h2 {
    font-size: 36px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 20px;
}

.content-header .tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.content-header .tag {
    display: inline-block;
}

.content-header .tag span {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.content-body {
    color: #000;
}

.content-body p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
}

.content-body h3 {
    font-size: 28px;
    line-height: 1.4;
    color: #000;
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #E4D900;
}

.content-body ul {
    margin: 20px 0 30px;
    padding-left: 20px;
}

.content-body ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
    list-style: none;
    position: relative;
    padding-left: 20px;
}

.content-body ul li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #E4D900;
    font-weight: bold;
}

.result-box {
    background: #E4D900;
    padding: 40px;
    border-radius: 8px;
    margin: 30px 0;
}

.result-box h4 {
    font-size: 24px;
    color: #000;
    margin-bottom: 15px;
    font-weight: bold;
}

.result-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 15px;
}

.result-box p:last-child {
    margin-bottom: 0;
}

.approach-items,
.process-items,
.plan-items {
    margin: 30px 0;
}

.approach-item,
.process-item,
.plan-item {
    background: #f8f8f8;
    padding: 30px;
    margin-bottom: 20px;
    border-left: 4px solid #E4D900;
}

.approach-item h4,
.process-item h4,
.plan-item h4 {
    font-size: 20px;
    color: #000;
    margin-bottom: 15px;
    font-weight: bold;
}

.approach-item p,
.process-item p,
.plan-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0;
}

.plan-item ul {
    margin-top: 15px;
    margin-bottom: 0;
}

.cta-section {
    background: #000;
    color: #fff;
    padding: 60px 40px;
    margin-top: 60px;
    text-align: center;
    border-radius: 8px;
}

.cta-section p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
}

.btn-contact {
    display: inline-block;
    background: #E4D900;
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Mobile Styles */
@media (max-width: 767px) {
    .content-section {
        padding: 60px 0;
    }
    
    .content-header h2 {
        font-size: 28px;
    }
    
    .content-body h3 {
        font-size: 22px;
        margin: 30px 0 15px;
    }
    
    .result-box {
        padding: 25px;
    }
    
    .result-box h4 {
        font-size: 20px;
    }
    
    .approach-item,
    .process-item,
    .plan-item {
        padding: 20px;
    }
    
    .approach-item h4,
    .process-item h4,
    .plan-item h4 {
        font-size: 18px;
    }
    
    .cta-section {
        padding: 40px 25px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
    
    .btn-contact {
        padding: 12px 30px;
        font-size: 15px;
    }
}