.content-body {
    font-size: 19px;
    line-height: 1.75;
    color: var(--text-primary);
    text-align: justify;
    text-justify: inter-word;
}

.content-body p {
    margin-bottom: 18px;
}

.issue-list {
    margin-top: 15px;
    margin-bottom: 30px;
    list-style: none;
    padding-left: 0;
}

.discover-heading {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--text-primary);
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.issue-list li {
    position: relative;
    margin-bottom: 16px;
    padding-left: 38px;
    font-size: 19px;
    color: var(--text-primary);
    text-align: left;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%232d4636' stroke='none'%3E%3Ccircle cx='12' cy='12' r='12'/%3E%3Cpath d='M10 16.5l-4-4 1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5-8 8z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 4px;
}

.content-wrapper::after {
    content: "";
    display: table;
    clear: both;
}

.cta-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    clear: both;
}

.cta-button {
    display: inline-block;
    background-color: var(--btn-bg);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 8px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 6px 16px rgba(16, 42, 67, 0.15);
}

.cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.trust-section {
    text-align: center;
    margin: 0 0 20px 0;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.trust-section p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin-bottom: 24px;
}

.trust-logos-img {
    max-width: 100%;
    height: auto;
    opacity: 0.95;
}

footer {
    background-color: #f9fafb;
    border-top: 1px solid var(--border-color);
    padding: 30px 60px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #9ca3af;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .content-body {
        text-align: left;
    }

    .cta-button {
        display: block;
        width: 100%;
        padding: 12px 20px;
        font-size: 17px;
    }

    footer {
        padding: 30px 24px;
    }
}
