.protect-header {
    padding: 120px 5% 60px;
    background: linear-gradient(to bottom, #003366, #005599);
    color: white;
    text-align: center;
}

.protect-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

section {
    padding: 4rem 5%;
}

section h2 {
    text-align: center;
    color: #003366;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.problem-grid,
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.problem-card,
.solution-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.problem-card img,
.solution-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.problem-card h3,
.solution-card h3 {
    padding: 1rem;
    color: #003366;
}

.problem-card p,
.solution-card p {
    padding: 0 1rem 1rem;
    color: #666;
}

.solution-section {
    background: #f5f5f5;
}

.action-list {
    max-width: 800px;
    margin: 0 auto;
}

.action-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.action-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.action-content {
    padding: 2rem;
    flex: 1;
}

.action-content h3 {
    color: #003366;
    margin-bottom: 1rem;
}

.action-content ul {
    list-style: none;
    padding: 0;
}

.action-content li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.action-content li::before {
    content: '•';
    color: #ff6633;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .action-item {
        flex-direction: column;
    }
    
    .action-item img {
        width: 100%;
    }
} 