/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typography */
body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
    padding: 0 10px;
}

/* Header */
#main-header {
    background-color: #0053a0;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.site-title {
    margin: 0;
    font-size: 3.5rem;
    font-weight: bold;
}

/* Navigation */
#main-nav {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    padding: 0.5rem 0;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-item {
    margin: 0 1.5rem;
}

.nav-item a {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.nav-item a:hover {
    color: #d1e8ff;
}

/* Intro Section */
.intro-section {
    background: #fff;
    padding: 4rem;
    text-align: center;
    border-bottom: 3px solid #e7e7e7;
}

.intro-section h2 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 2.2rem;
}

/* Training Programs Section */
.training-section {
    padding: 2.5rem;
}

.training-program {
    background: #e7e7e7;
    margin-bottom: 1.5rem;
    padding: 2rem;
    border-left: 6px solid #0053a0;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.training-program h3 {
    margin-top: 0;
}

/* Digital Tools Section */
.tools-section {
    padding: 2.5rem;
}

.digital-tool {
    background: #e7e7e7;
    margin-bottom: 1.5rem;
    padding: 2rem;
    border-left: 6px solid #007acc;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.digital-tool h3 {
    margin-top: 0;
}

/* Usage Tips Section */
.tips-section {
    padding: 2.5rem;
}

.usage-tip {
    background: #e7e7e7;
    margin-bottom: 1.5rem;
    padding: 2rem;
    border-left: 6px solid #0099cc;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.usage-tip h3 {
    margin-top: 0;
}

/* Resources Section */
.resources-section {
    background: #fff;
    padding: 2.5rem;
    border-top: 3px solid #e7e7e7;
}

.resources-list {
    list-style: none;
    padding: 1rem;
}

.resources-list li {
    margin-bottom: 0.75rem;
}

.resources-list a {
    text-decoration: none;
    color: #0053a0;
    transition: color 0.3s ease;
}

.resources-list a:hover {
    color: #003d7a;
}

/* Footer */
#main-footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    font-size: 1rem;
}

#main-footer p {
    margin: 0;
}
