/* Focus Areas Page Specific Styles */

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.focus-content {
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.focus-content h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    border-bottom: 3px solid #3498db;
    padding-bottom: 20px;
}

.principle-content {
    color: #444;
}

.principle-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: justify;
}

.principle-content p:last-child {
    margin-bottom: 0;
}

/* Key Emphasis Styles */
.emphasis-primary {
    color: #2980b9;
    font-weight: 600;
}

.emphasis-key {
    color: #27ae60;
    font-weight: 600;
}

.emphasis-resources {
    color: #16a085;
    font-weight: 500;
    font-style: italic;
}

.emphasis-secondary {
    color: #8e44ad;
    font-style: italic;
    font-weight: 500;
}

.emphasis-negative {
    color: #e74c3c;
    font-weight: 500;
    text-decoration: line-through;
    opacity: 0.8;
}

.emphasis-health {
    color: #27ae60;
    font-weight: 700;
    font-size: 1.15em;
}

.health-belief {
    margin-top: 40px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 10px;
    border-left: 5px solid #27ae60;
}

.health-statement {
    font-size: 1.15em;
    color: #2c3e50;
    margin: 0;
    text-align: center;
    font-weight: 700;
}

.health-statement strong {
    font-weight: 700;
}

.focus-areas-list {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.focus-areas-list h2 {
    color: #2c3e50;
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.focus-intro {
    font-size: 1.1em;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

.areas-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 35px;
    border-radius: 10px;
    border-left: 5px solid #3498db;
}

.areas-list li {
    font-size: 1.1em;
    color: #444;
    padding: 15px 0 15px 40px;
    position: relative;
    line-height: 1.7;
    border-bottom: 1px solid #dee2e6;
    transition: background-color 0.3s ease, padding-left 0.3s ease;
}

.areas-list li:last-child {
    border-bottom: none;
}

.areas-list li:before {
    content: "●";
    position: absolute;
    left: 15px;
    color: #3498db;
    font-weight: bold;
    font-size: 1.3em;
    top: 12px;
}

.areas-list li:hover {
    background-color: rgba(52, 152, 219, 0.05);
    padding-left: 45px;
}

.contact-cta {
    font-size: 1.15em;
    color: #2c3e50;
    text-align: center;
    margin: 0;
    font-weight: 500;
}

.contact-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.contact-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-content {
        padding: 20px 15px;
    }
    
    .focus-content {
        padding: 30px 20px;
    }
    
    .focus-content h1 {
        font-size: 2em;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    .principle-content p {
        font-size: 1em;
        margin-bottom: 25px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .focus-content {
        padding: 25px 15px;
    }
    
    .focus-content h1 {
        font-size: 1.75em;
    }
    
    .principle-content p {
        margin-bottom: 20px;
    }
    
    .focus-areas-list {
        margin-top: 35px;
        padding-top: 30px;
    }
    
    .focus-areas-list h2 {
        font-size: 1.6em;
    }
    
    .focus-intro {
        font-size: 1em;
    }
    
    .areas-list {
        padding: 25px 20px;
    }
    
    .areas-list li {
        font-size: 1em;
        padding: 12px 0 12px 35px;
    }
    
    .areas-list li:before {
        left: 10px;
        font-size: 1.2em;
        top: 10px;
    }
    
    .areas-list li:hover {
        padding-left: 40px;
    }
    
    .contact-cta {
        font-size: 1.05em;
    }
}

