/*
Theme Name: Simple Theme
Description: Un thème WordPress simple et minimal
Version: 1.0
Author: Votre Nom
*/

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container principal */
.container {
    max-width: 1650px;
    margin: 0 auto;
}

.site-main { padding:50px 0;}


/* Footer */
.site-footer {
    background-color: #f8f9fa;
    padding: 30px 0;
    border-top: 1px solid #dee2e6;
    text-align: center;
    color: #666;
}
