@import url("header.css");
@import url("footer.css");

html {
    height: 100%;
}

@media screen and (max-width: 768px) {
    html {
        min-height: 100%;
    }
}

body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
    height: 100%;
}

.container {
    max-width: 80%;
    margin: auto;
}

/* Styles pour la page des services */
#services{
    height: 80%;
}

.services-table {
    padding: 60px 20px;
    background: #f9f9f9;
}

.services-table h2 {
    text-align: center;
    margin-bottom: 20px;
}

.services-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.services-table th,
.services-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.services-table th {
    background: #222;
    color: #fff;
    font-weight: bold;
}

.services-table tr:hover {
    background: #f1f1f1;
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 98%;
        padding: 0 5px;
    }

    .services-table {
        padding: 30px 5px;
    }

    .services-table table,
    .services-table th,
    .services-table td {
        font-size: 14px;
    }

    .services-table th,
    .services-table td {
        padding: 10px 5px;
    }
}

@media screen and (max-width: 480px) {
    .services-table table,
    .services-table th,
    .services-table td {
        font-size: 12px;
    }

    .services-table th,
    .services-table td {
        padding: 7px 2px;
    }

    .services-table h2 {
        font-size: 1.2em;
    }
}