/* Objectives Section Styles */
.objectives-section {
    /* padding: 80px 0; */
    background: white;
}

.objectives-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Left Column */
.objectives-left {
    position: relative;
}

.category-label {
    display: inline-block;
    background: #f8f9fa;
    color: #007bff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.mission-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
    margin-bottom: 40px;
    font-family: 'Arial', sans-serif;
}

.graphic-elements {
    position: relative;
    height: 200px;
}

.blue-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: #007bff;
    clip-path: polygon(0 0, 100% 0, 60% 100%, 0 80%);
    z-index: 1;
}

.target-icon {
    position: absolute;
    bottom: 20px;
    left: 40px;
    font-size: 3rem;
    z-index: 2;
}

/* Right Column */
.objectives-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.objective-item {
    margin-bottom: 20px;
}

.objective-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
}

.objective-header h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.objective-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.objective-item li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.4;
    color: #333;
}

.objective-item li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
}

.objective-item li:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .objectives-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-text {
        font-size: 1.5rem;
    }

    .graphic-elements {
        height: 150px;
    }

    .blue-shape {
        width: 100px;
        height: 100px;
    }

    .target-icon {
        font-size: 2.5rem;
        bottom: 15px;
        left: 30px;
    }

    .objective-header h3 {
        font-size: 1.2rem;
    }

    .objective-item li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .objectives-section {
        padding: 60px 0;
    }

    .mission-text {
        font-size: 1.3rem;
    }

    .graphic-elements {
        height: 120px;
    }

    .blue-shape {
        width: 80px;
        height: 80px;
    }

    .target-icon {
        font-size: 2rem;
        bottom: 10px;
        left: 25px;
    }

    .objective-header h3 {
        font-size: 1.1rem;
    }

    .objective-item li {
        font-size: 0.9rem;
    }
} 