/* --- General Styles --- */
:root {
    --primary-color: #00aaff;
    --dark-text: #333;
    --light-text: #fff;
    --background-color: #f4f8ff;
    --card-background: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--dark-text);
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

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

h1, h2, h3 {
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

/* --- Hero Section --- */
.hero {
    background-color: var(--card-background);
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero h3 {
    font-weight: 400;
    max-width: 600px;
    margin: 20px auto 30px auto;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* --- Buttons --- */
.cta-button {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 15px 35px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #0088cc;
    transform: translateY(-3px);
}

/* --- Problem Section --- */
.problem-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}
.problem-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.problem-list li::before {
    content: '🥵'; /* Emoji can be changed */
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

/* --- How It Works Section --- */
#how-it-works {
        background-color: var(--card-background);
}
.steps-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
.step {
    flex-basis: 250px;
}
.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* --- Testimonials Section --- */
.testimonials-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.testimonial {
    background-color: var(--card-background);
    border-radius: 12px;
    padding: 30px;
    flex-basis: 45%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}
.testimonial blockquote {
    margin: 0;
    font-style: italic;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}
.testimonial .author {
    margin-top: 15px;
    font-weight: 700;
}


/* --- Services & Prices Section --- */
#services {
        background-color: var(--card-background);
}
.services-container, .prices-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
.service-item, .price-item {
    background-color: var(--card-background);
    border-radius: 12px;
    padding: 30px;
    flex-basis: 280px; /* Controls how many fit on one line */
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover, .price-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.service-item .service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.price-item .price-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.price-item .price-tag {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.price-item .price-tag small {
    font-size: 1rem;
    font-weight: 400;
    color: #777;
}

/* --- Guarantee Section --- */
.guarantee-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
#garantie p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Adjusting new sections for mobile */
@media (max-width: 768px) {
    .service-item, .price-item {
        flex-basis: 100%;
    }
}

/* --- Contact Section --- */
#contact {
        background-color: var(--card-background);
}
.contact-form {
    max-width: 600px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--primary-color);
    border-color: var(--primary-color);
}

/* --- Footer --- */
footer {
    background-color: var(--dark-text);
    color: #aaa;
    padding: 40px 20px;
    text-align: center;
}
footer p {
    margin: 5px 0;
}
footer a {
    color: var(--light-text);
    text-decoration: none;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .testimonial {
        flex-basis: 100%;
    }
}


/* MAIN HEADER */
.main-header {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: "Merriweather", serif;
    letter-spacing: 0.01rem;
    font-size: 1.8rem;
    line-height: 1.75em;
    color: #3A4145;
    -webkit-font-feature-settings: 'kern' 1;
    text-rendering: geometricPrecision;
    position: relative;
    display: table;
    width: 100%;
    /* margin-bottom: 5rem; */
    text-align: center;
    background: #222 no-repeat center center;
    background-size: cover;
    overflow: hidden;
    box-sizing: border-box;
    padding: 15% 0;
    min-height: 180px;
    height: 30vh;
    background-image: url(./banner.png);
}
