/* 
Theme Name: WordPress Educational Platform
Theme URI: http://example.com
Author: Your Name
Author URI: http://example.com
Description: A clean and educational theme for promoting an educational platform with interactive features.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: educational-platform
*/

body {
    font-family: Arial, sans-serif;
    background-color: #FCFCFC;
    color: #363564;
    margin: 0;
    padding: 0;
}

header {
    background-color: #7D65E1;
    padding: 20px;
    text-align: center;
}

nav {
    margin: 20px 0;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 15px;
}

nav a:hover {
    text-decoration: underline;
}

.section {
    padding: 60px 20px;
    text-align: center;
}

.section-hero {
    background-color: #FFFFFF;
}

.section-features {
    background-color: #FCFCFC;
}

.footer {
    background-color: #363564;
    color: #FFFFFF;
    padding: 20px 0;
}

.footer .column {
    width: 25%;
    display: inline-block;
    vertical-align: top;
    padding: 10px;
}

.footer a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer .column {
        width: 100%;
    }
}