/* Styles spécifiques à la page Tarifs Maintenance PC */

:root {
    --main-red: #218838;
    --red-light: #acacac;
    --bg-white: #fff;
    --grey: #272727;
}
body {
    margin: 0;
    background: var(--bg-white);
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--grey);
    font-size: 1rem !important;
    min-height: 100vh;
}
.wrapper {
    max-width: 1200px;
    margin: 40px auto 30px auto;
    padding: 0 20px 30px 20px;
}
.banner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: var(--red-light);
    border-radius: 24px;
    padding: 40px 40px 32px 40px;
    margin-bottom: 34px;
    box-shadow: 0 8px 40px rgba(110, 20, 20, 0.05);
}
.banner-titles {
    flex: 1 1 70%;
    padding-right: 32px;
}
.title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.2em;
    color: var(--main-red);
}
.subtitle {
    font-size: 2.5rem;
    color: var(--grey);
    font-weight: 700;
    margin-bottom: 12px;
}
.tagline {
    font-size: 2rem;
    color: #4a4a4a;
    margin-bottom: 18px;
    font-weight: 400;
}
.hex-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    min-width: 160px;
    margin-top: 300px;
}
.hex-img {
    width: 250px;
    aspect-ratio: 1/1;
    background: #218838;
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
    background-size: cover;
    background-position: center;
    border: 15px solid #fff;
    box-shadow: 0 4px 16px rgba(215, 38, 61, 0.11);
}
.section-title {
    color: var(--main-red);
    font-size: 2rem;
    font-weight: 700;
    margin: 35px 0 15px 0;
    letter-spacing: 0.5px;
}
.steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.step-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: #fff;
    border-left: 5px solid var(--main-red);
    padding: 22px 22px 48px 22px;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(60,20,20,0.05);
    display: flex;
    flex-direction: column;
    flex: 1 1 340px;
    position: relative;
}
.step-title {
    font-weight: 700;
    color: var(--main-red);
    font-size: 2rem;
    margin-bottom: 7px;
}
.step-body {
    color: #363636;
    font-size: 2rem;
    flex: 1 1 auto;
}
ul {
    margin: 8px 0 18px 0;
    padding-left: 1.5em;
}
li {
    font-size: 2rem;
    margin-bottom: 7px;
    color: #218838;
}
.contact {
    margin-top: 32px;
    font-size: 2rem;
    background: #f7e4e6;
    border-radius: 12px;
    padding: 13px 27px;
    color: var(--grey);
    border-left: 4px solid var(--main-red);
    font-weight: 500;
}
.card-tarif {
    position: absolute;
    right: 18px;
    bottom: 12px;
    font-size: 2.2rem;
    color: #218838;
    font-weight: bold;
    transform: rotate(-10deg);
    opacity: 0.85;
    pointer-events: none;
    user-select: none;
}
@media (max-width: 1000px) {
    .banner {
        flex-direction: column;
        align-items: stretch;
        padding: 32px 16px 20px 16px;
    }
    .banner-titles {
        padding-right: 0;
        margin-bottom: 28px;
    }
    .steps {
        flex-direction: column;
    }
    .step-card {
        min-width: unset;
    }
    .hex-col {
        flex-direction: row;
        justify-content: flex-start;
        gap: 18px;
        min-width: 0;
    }
}
@media (max-width: 600px) {
    .wrapper {
        padding: 0 4px 12px 4px;
    }
    .banner {
        padding: 18px 3px 14px 3px;
    }
    .section-title { font-size: 1.08rem;}
    .step-card { padding: 13px 9px 9px 12px;}
    .hex-img { width: 64px;}
    .hex-col { gap: 8px;}
} 