* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffcc33, #ff6600);
    color: #333;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 4rem 1rem;
    color: white;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
}

section {
    padding: 3rem 1.5rem;
    max-width: 1100px;
    margin: auto;
}

h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card h3 {
    margin-bottom: 1rem;
    color: #ff6600;
}

.quote {
    background: white;
    margin-top: 3rem;
    padding: 2rem;
    border-left: 8px solid #ff6600;
    border-radius: 10px;
    font-style: italic;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.airfryer-section {
    background: #222;
    color: #eee;
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.airfryer-section h2 {
    color: #ff4444;
}

.airfryer-card {
    background: #333;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(0,0,0,0.15);
    color: white;
    margin-top: 3rem;
}

@media (max-width: 600px) {
    header h1 {
        font-size: 2.2rem;
    }

    header p {
        font-size: 1rem;
    }
}

.btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background: white;
    color: #ff6600;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background: #333;
    color: white;
}

/* Vergelijkingstabel */

.comparison-section {
    margin-top: 4rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
}

.comparison-table thead {
    background: #ff6600;
    color: white;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.winner {
    font-weight: bold;
    color: #ff6600;
}

@media (max-width: 768px) {
    .comparison-table thead {
        display: none;
    }

    .comparison-table,
    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table td {
        display: block;
        width: 100%;
    }

    .comparison-table tr {
        margin-bottom: 1.5rem;
        border-bottom: 2px solid #ddd;
    }

    .comparison-table td {
        text-align: left;
        padding: 0.8rem;
    }

    .comparison-table td::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        margin-bottom: 0.3rem;
        color: #ff6600;
    }
}
