/* Shared styles for informational/content pages */
.ug-content-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 24px;
    font-family: 'Inter', sans-serif;
}

.ug-content-page .page-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.3;
}

.ug-content-page .page-title span {
    color: #87b942;
}

.ug-content-page .page-subtitle {
    font-size: 15px;
    color: #777;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Section blocks */
.ug-content-page .content-section {
    margin-bottom: 40px;
}

.ug-content-page .content-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #111;
}

.ug-content-page .content-section h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.ug-content-page .content-section p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}

.ug-content-page .content-section ul,
.ug-content-page .content-section ol {
    padding-left: 22px;
    margin-bottom: 16px;
}

.ug-content-page .content-section li {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 6px;
}

.ug-content-page .content-section a {
    color: #87b942;
    text-decoration: none;
    font-weight: 500;
}

.ug-content-page .content-section a:hover {
    text-decoration: underline;
}

/* Info cards grid */
.ug-content-page .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.ug-content-page .info-card {
    border: 1.5px solid #e8f5e9;
    border-radius: 14px;
    padding: 24px;
    background: #fafffe;
    transition: box-shadow 0.2s;
}

.ug-content-page .info-card:hover {
    box-shadow: 0 4px 18px rgba(57, 181, 74, 0.08);
}

.ug-content-page .info-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.ug-content-page .info-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* Numbered steps */
.ug-content-page .step-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.ug-content-page .step-list li {
    counter-increment: step-counter;
    padding: 18px 20px 18px 60px;
    border: 1.5px solid #e8f5e9;
    border-radius: 12px;
    margin-bottom: 12px;
    position: relative;
    background: #fff;
}

.ug-content-page .step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #87b942;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

/* FAQ accordion */
.ug-content-page .faq-list {
    margin-bottom: 30px;
}

.ug-content-page .faq-item {
    border: 1.5px solid #e8f5e9;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}

.ug-content-page .faq-question {
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafffe;
    transition: background 0.2s;
}

.ug-content-page .faq-question:hover {
    background: #f0faf2;
}

.ug-content-page .faq-question .faq-toggle {
    font-size: 20px;
    color: #87b942;
    font-weight: 700;
    transition: transform 0.3s;
}

.ug-content-page .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.ug-content-page .faq-item.active .faq-answer {
    padding: 0 20px 18px;
    max-height: 500px;
}

.ug-content-page .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.ug-content-page .faq-answer p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

/* Highlight box */
.ug-content-page .highlight-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #f0faf2 100%);
    border-left: 4px solid #87b942;
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.ug-content-page .highlight-box p {
    color: #333;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Table */
.ug-content-page .content-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 14px;
}

.ug-content-page .content-table th,
.ug-content-page .content-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.ug-content-page .content-table th {
    background: #f0faf2;
    font-weight: 600;
    color: #222;
}

.ug-content-page .content-table td {
    color: #555;
}

/* Last updated */
.ug-content-page .last-updated {
    font-size: 12px;
    color: #aaa;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

@media (max-width: 600px) {
    .ug-content-page .page-title { font-size: 24px; }
    .ug-content-page { margin: 30px auto; }
}
