/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

.tagline {
    font-size: 1.2em;
    opacity: 0.95;
    font-weight: 300;
}

/* Main Content */
main {
    background: white;
    margin: 40px auto;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

section {
    margin-bottom: 50px;
}

section:last-child {
    margin-bottom: 0;
}

h2 {
    color: #2c3e50;
    font-size: 2em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
}

h3 {
    color: #34495e;
    font-size: 1.4em;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.8;
}

/* Focus Areas Grid */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.focus-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #3498db;
    transition: transform 0.2s, box-shadow 0.2s;
}

.focus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.focus-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
}

.focus-item p {
    color: #555;
    font-size: 1em;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
}

.contact a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}

footer p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.ownership-statement {
    font-weight: 600;
    color: #3498db;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    
    .tagline {
        font-size: 1em;
    }
    
    main {
        padding: 30px 20px;
    }
    
    h2 {
        font-size: 1.6em;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 40px 0;
    }
    
    header h1 {
        font-size: 1.6em;
    }
    
    main {
        margin: 20px 10px;
        padding: 25px 15px;
    }
}
