/* Main styles for Employability Profile */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ecf0f1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 30px;
}

h1 {
    margin: 0;
    font-size: 2.5rem;
}

h2 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

nav {
    margin: 20px 0;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: rgba(255,255,255,0.2);
}

#special-paragraph {
    font-size: 0.85em;
}

section {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.activity-card {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.activity-card h3 {
    margin-top: 0;
    color: #3498db;
}

.activity-link {
    display: inline-block;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.activity-link:hover {
    background-color: #2980b9;
}

footer {
    text-align: center;
    margin-top: 30px;
    color: #7f8c8d;
}