/* Goals & Objectives Styles */
.goals-objectives-section {
    background-color: #ffffff;
}

.goals-objectives-section .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.goals-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.goals-content {
    flex: 1;
}

.goals-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(var(--primary-rgb), 0.05);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.goals-title {
    font-family: 'IBM Plex Serif', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
}

.goals-subtitle {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 0;
    margin-top: 10px;
}

.goals-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f2f2f2;
}

.goals-intro-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.goals-intro-text {
    flex: 1;
}

.goals-intro-logo {
    width: 180px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.goals-intro-logo img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.08));
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
    font-weight: 500;
}

.commitment-title {
    font-family: 'IBM Plex Serif', serif;
    font-size: 1.6rem;
    font-weight: 700;

    @media (max-width: 991px) {
        .goals-header {
            flex-direction: column;
            gap: 20px;
        }

        .goals-title {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 768px) {
        .goals-header {
            flex-direction: column;
            gap: 20px;
        }

        .goals-title {
            font-size: 2rem;
        }

        .goals-subtitle {
            font-size: 1rem;
        }

        .goals-intro-row {
            flex-direction: column;
            gap: 20px;
        }
    }
    color: var(--primary);
}

.commitment-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.goals-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.goal-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f8f9fa;
}

.goal-item:last-child {
    border-bottom: none;
}

.goal-icon {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.goal-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 768px) {
    .goals-header,
    .goals-content {
        text-align: center;
        align-items: center;
    }

    .goals-card {
        padding: 25px;
    }
    
    .lead-text {
        font-size: 1.05rem;
    }

    .goals-intro-row {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }

    .lead-text {
        padding-top: 15px;
    }

    .goals-intro-logo {
        width: 120px;
        margin: 0 auto;
    }

    .goals-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}
