/* Target Audience Section */
.target-audience-section {
    padding: 5rem 0;
    background-color: #f1f2f6;
}

.target-header h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 3rem;
    line-height: 1.4;
    text-align: center;
    /* Ensure centering */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.target-highlight {
    display: block;
    font-size: 2.2rem;
    color: #b78826;
    /* Gold/Brown color */
    font-weight: 800;
    margin-top: 0.5rem;
    position: relative;
    display: inline-block;
}

.target-highlight::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #b78826;
    margin-top: 5px;
    border-radius: 2px;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    /* Increased from 1000px */
    margin: 0 auto;
}

.target-card {
    background: white;
    border: 2px dashed #b78826;
    border-radius: 30px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(183, 136, 38, 0.15);
}

.target-number {
    font-family: 'Fredoka', sans-serif;
    font-size: 5rem;
    color: #b78826;
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 700;
}

.target-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.target-card p {
    font-size: 0.95rem;
    color: #636e72;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .target-highlight {
        font-size: 1.6rem;
    }

    .target-card {
        padding: 1.5rem;
    }
}