/* css/plain-content.css */

/* Centered container with max width */
.plain-content .w1542 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 110px 20px 100px 20px;
    text-align: left;
}

/* Bold text – matches title blue */
.plain-content strong {
    font-family: 'Inter-Bold';
    color: #0169AF;
}

/* Page Title - Centered */
.plain-content h1.font32 {
    margin-bottom: 16px;
    color: #0169AF;
    font-family: 'Inter-Bold';
    text-align: center;
}

/* Company Name - Centered */
.plain-content .company-name {
    text-align: center;
    margin-bottom: 16px;
    font-family: 'Inter-Bold';
    line-height: 1.6;
}

/* Important Notice - Centered, Red, Italic, UPPERCASE */
.plain-content .notice {
    margin-bottom: 40px;
    text-align: center;
    color: #D32F2F;
    font-style: italic;
}

.plain-content .notice p.font16 {
    font-family: 'Inter-Medium';
    line-height: 1.7;
    margin: 8px 0;
    text-transform: uppercase;
}

/* Content List */
.plain-content .content-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 56px;
}

/* Section Headings */
.plain-content .term-item h2.font20 {
    margin: 0 0 8px;
    color: #0169AF;
    font-family: 'Inter-Bold';
}

/* Body Text */
.plain-content .term-item > p.font16,
.plain-content p.font16 {
    font-family: 'Inter-Medium';
    line-height: 1.7;
    margin: 0 0 16px;
}

/* Lists */
.plain-content .term-item ol[type="1"],
.plain-content .term-item ol[type="a"],
.plain-content ol[type="1"],
.plain-content ol[type="a"] {
    padding-left: 20px;
    margin: 0;
    font-family: 'Inter-Medium';
    line-height: 1.7;
}

.plain-content .term-item ol[type="1"] > li,
.plain-content .term-item ol[type="a"] > li,
.plain-content ol[type="1"] > li,
.plain-content ol[type="a"] > li {
    margin-bottom: 12px;
}

.plain-content .sub-list {
    padding-left: 20px;
    margin-top: 8px;
}

/* Company Footer */
.plain-content .company-info {
    text-align: center;
    margin-top: 56px;
}

.plain-content .company-info .font18 {
    font-family: 'Inter-Bold';
    margin-bottom: 8px;
    line-height: 1.6;
}

.plain-content .company-info .font16 {
    font-family: 'Inter-Medium';
    line-height: 1.6;
    color: #333;
}

/* Optional: Clean CTA Box (remove if you don’t want blue banner) */
.plain-content .cta {
    background: #0169AF;
    color: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    margin: 32px 0;
}
.plain-content .cta strong { color: white; }
.plain-content .cta a { color: #FFD700; text-decoration: underline; }
.plain-content .cta .font18 { margin:0 0 12px; font-family:'Inter-Bold'; }

/* WhatsApp Button – Inside .cta */
.plain-content .cta .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Inter-Medium';
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    margin: 8px 0;
    min-width: 180px;
}
.plain-content .cta .whatsapp-btn:hover {
    background: #1DA851;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}
.plain-content .cta .whatsapp-icon {
    margin-right: 4px;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}