/* ===========================
   ASAS Physical Coaching
   Global Styles
   =========================== */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===========================
   Header Styles
   =========================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
}

.top-bar {
    background: #000;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.social-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.7;
}

.social-link svg {
    transition: transform 0.3s;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.cart {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.logo {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: #dec252;
}

.cta-button {
    background: #dec252;
    color: #000;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #c4b048;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.menu-toggle:focus {
    outline: none;
}

.menu-toggle.active {
    color: #dec252;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 120px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 35px;
    line-height: 1.1;
}

.hero-cta {
    background: #dec252;
    color: #000;
    padding: 18px 45px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.hero-cta:hover {
    background: #c4b048;
    transform: translateY(-2px);
}

/* ===========================
   Women/Men Class Section
   =========================== */
.class-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.class-card {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 60px;
    overflow: hidden;
    transition: transform 0.3s;
}

.class-card:hover {
    transform: scale(1.02);
}

.class-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    transition: opacity 0.3s;
}

.class-card:hover::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 100%);
}

.class-card > * {
    position: relative;
    z-index: 2;
}

.women-class {
    background-image: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?w=1000');
}

.men-class {
    background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1000');
}

.class-card h2 {
    font-size: 38px;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.class-card p {
    max-width: 550px;
    line-height: 1.9;
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    color: #f0f0f0;
}

.class-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 35px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    transition: all 0.3s;
}

.class-btn:hover {
    background: #dec252;
    border-color: #dec252;
}

/* ===========================
   About Section
   =========================== */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 120px 50px;
    gap: 80px;
    align-items: center;
    background: #000;
}

.about-content h3 {
    color: #dec252;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content h2 {
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 35px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-content p {
    line-height: 1.9;
    margin-bottom: 25px;
    color: #d0d0d0;
    font-size: 17px;
    font-weight: 300;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
}

/* ===========================
   Classes Detail Section
   =========================== */
.classes-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 120px 50px;
    gap: 80px;
    align-items: center;
    background: #0a0a0a;
}

.classes-detail .about-image {
    order: 1;
}

.classes-detail .about-content {
    order: 2;
}

/* ===========================
   Experience Section
   =========================== */
.experience-section {
    padding: 100px 50px;
    background: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1920') center/cover fixed;
    position: relative;
    text-align: center;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
}

.experience-section > * {
    position: relative;
    z-index: 2;
}

.experience-section h3 {
    color: #dec252;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.experience-section h2 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 35px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.experience-section p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
    color: #d0d0d0;
    font-size: 17px;
    font-weight: 300;
}

/* ===========================
   Programs Section
   =========================== */
.programs-section {
    padding: 100px 50px;
    text-align: center;
}

.programs-section h3 {
    color: #dec252;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.programs-section h2 {
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.programs-section > p {
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.9;
    color: #d0d0d0;
    font-size: 17px;
    font-weight: 300;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.program-card {
    background: #0a0a0a;
    padding: 50px 35px;
    border-radius: 0;
    border: 1px solid #1a1a1a;
    transition: all 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: #dec252;
    background: #111111;
}

.program-card h4 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.program-card p {
    color: #d0d0d0;
    line-height: 1.8;
    font-size: 15px;
    font-weight: 300;
}

/* ===========================
   Trainers Section
   =========================== */
.trainers-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 120px 50px;
    gap: 80px;
    align-items: center;
    background: #0a0a0a;
}

.trainer-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.trainer-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   Membership Section
   =========================== */
.membership-section {
    padding: 120px 50px;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1920') center/cover;
    position: relative;
}

.membership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
}

.membership-section > * {
    position: relative;
    z-index: 2;
}

.membership-section h3 {
    color: #dec252;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
}

.membership-section h2 {
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 35px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.membership-section p {
    font-size: 17px;
    line-height: 1.9;
    color: #d0d0d0;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* ===========================
   Footer
   =========================== */
footer {
    background: #000;
    padding: 80px 50px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    max-width: 250px;
}

.footer-section h6 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #dec252;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter {
    display: flex;
    gap: 10px;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
}

.newsletter button {
    padding: 12px 25px;
    background: #dec252;
    color: #000;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.footer-bottom a {
    color: #666;
    text-decoration: none;
}

/* ===========================
   WhatsApp Float Button
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

/* ===========================
   Contact Page Styles
   =========================== */
.contact-page-section {
    padding: 180px 50px 120px;
    min-height: 100vh;
    background: #000;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-container h3 {
    color: #dec252;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.contact-container h2 {
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
}

.contact-container > p {
    text-align: center;
    color: #d0d0d0;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 50px;
}

.contact-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #1a1a1a;
    background: #0a0a0a;
}

.contact-info-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #dec252;
}

.contact-info-item p,
.contact-info-item a {
    color: #d0d0d0;
    font-size: 15px;
    font-weight: 300;
    text-decoration: none;
    line-height: 1.6;
}

.contact-info-item a:hover {
    color: #dec252;
}

.contact-form {
    background: #0a0a0a;
    padding: 50px;
    border: 1px solid #1a1a1a;
}

.contact-form h3 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ccc;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #dec252;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-submit {
    background: #dec252;
    color: #000;
    padding: 16px 45px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.form-submit:hover {
    background: #c4b048;
}

.form-messages {
    margin-bottom: 25px;
    padding: 15px 20px;
    border: 1px solid;
    font-size: 15px;
    font-weight: 400;
}

.form-messages.success {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
    color: #25D366;
}

.form-messages.error {
    background: rgba(255, 59, 48, 0.1);
    border-color: #ff3b30;
    color: #ff3b30;
}

/* ===========================
   Pijnklachten Grid Section
   =========================== */
.pijnklachten-grid-section {
    padding: 100px 50px;
    text-align: center;
    background: #0a0a0a;
}

.pijnklachten-grid-section h3 {
    color: #dec252;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
}

.pijnklachten-grid-section h2 {
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.pijnklachten-grid-section > p {
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.9;
    color: #d0d0d0;
    font-size: 17px;
    font-weight: 300;
}

.pijnklachten-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

/* Center last row when not filling full grid */
.pijnklachten-grid {
    justify-items: center;
}

/* For 7 items: center the last 3 in second row */
.pijnklacht-card:nth-child(5),
.pijnklacht-card:nth-child(6),
.pijnklacht-card:nth-child(7) {
    /* handled by grid auto */
}

.pijnklacht-card {
    background: #111;
    border: 1px solid #1a1a1a;
    padding: 35px 20px 30px;
    text-align: center;
    transition: all 0.3s;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.pijnklacht-card:hover {
    border-color: #dec252;
    transform: translateY(-5px);
    background: #151515;
    box-shadow: 0 10px 30px rgba(222, 194, 82, 0.08);
}

.pijnklacht-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pijnklacht-card:hover .pijnklacht-img {
    box-shadow: 0 4px 20px rgba(222, 194, 82, 0.25);
    transform: scale(1.08);
}

.pijnklacht-img img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    transition: transform 0.3s;
}

.pijnklacht-card:hover .pijnklacht-img img {
    transform: scale(1.05);
}

.pijnklacht-card h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s;
}

.pijnklacht-card:hover h4 {
    color: #dec252;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
    .class-section,
    .about-section,
    .classes-detail,
    .trainers-section,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .pijnklachten-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 48px;
    }

    .main-nav {
        padding: 20px 30px;
        position: relative;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        display: none;
        z-index: 999;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        border-top: 1px solid #333;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid #1a1a1a;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        padding: 10px 20px;
        width: 100%;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .contact-info-row {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pijnklachten-grid-section {
        padding: 60px 20px;
    }

    .pijnklachten-grid-section h2 {
        font-size: 28px;
    }

    .pijnklacht-card {
        padding: 25px 15px 20px;
    }

    .pijnklacht-img {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .pijnklacht-img img {
        width: 65px;
        height: 65px;
    }

    .top-bar {
        padding: 10px 20px;
    }

    .main-nav {
        padding: 15px 20px;
    }

    header {
        position: fixed;
        width: 100%;
    }

    .hero {
        margin-top: 100px;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: 1px;
    }

    .hero-cta {
        padding: 14px 30px;
        font-size: 12px;
    }

    .about-section,
    .classes-detail,
    .programs-section,
    .trainers-section,
    .membership-section,
    .experience-section {
        padding: 60px 20px;
    }

    .class-card {
        padding: 50px 25px;
    }

    .class-card h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .class-card p {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-content h2,
    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .about-content p,
    .experience-section p,
    .programs-section > p {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-content p {
        margin-bottom: 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .programs-section h2 {
        font-size: 28px;
    }

    .programs-section > p {
        font-size: 15px;
    }

    .program-card {
        padding: 35px 25px;
    }

    .program-card h4 {
        font-size: 20px;
    }

    .program-card p {
        font-size: 14px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .contact-page-section {
        padding: 140px 20px 60px;
    }

    .contact-container h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .pijnklachten-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .pijnklachten-grid-section {
        padding: 50px 15px;
    }

    .pijnklacht-img {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }

    .pijnklacht-img img {
        width: 55px;
        height: 55px;
    }

    .pijnklacht-card h4 {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .class-card h2 {
        font-size: 22px;
    }

    .about-content h2,
    .section-title {
        font-size: 24px;
    }

    .logo {
        height: 40px;
    }

    nav ul {
        top: 65px;
    }

    .hero h1 {
        padding: 0 10px;
    }

    .class-card {
        padding: 40px 20px;
    }

    .about-section,
    .classes-detail,
    .programs-section,
    .trainers-section,
    .membership-section,
    .experience-section {
        padding: 50px 15px;
    }
}

/* ===========================
   Prijzen Page Styles
   =========================== */
.prijzen-page-section {
    padding: 180px 50px 120px;
    min-height: 100vh;
    background: #000;
}

.prijzen-container {
    max-width: 900px;
    margin: 0 auto;
}

.prijzen-container h3 {
    color: #dec252;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.prijzen-container h2 {
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
}

.prijzen-container > p {
    text-align: center;
    color: #d0d0d0;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.prijzen-table-wrapper {
    overflow-x: auto;
    margin-bottom: 50px;
}

.prijzen-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #1a1a1a;
}

.prijzen-table thead {
    background: #dec252;
}

.prijzen-table thead th {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 24px;
    text-align: left;
    border-bottom: 2px solid #dec252;
}

.prijzen-table thead th.th-nr {
    width: 60px;
    text-align: center;
}

.prijzen-table thead th.th-prijs {
    width: 140px;
    text-align: right;
}

.prijzen-table tbody tr {
    border-bottom: 1px solid #1a1a1a;
    transition: background 0.3s;
}

.prijzen-table tbody tr:nth-child(even) {
    background: #0a0a0a;
}

.prijzen-table tbody tr:hover {
    background: #111;
    border-color: #dec252;
}

.prijzen-table tbody td {
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 300;
    color: #e0e0e0;
    vertical-align: middle;
}

.prijzen-table tbody td:first-child {
    text-align: center;
    color: #dec252;
    font-weight: 600;
    font-size: 14px;
}

.prijzen-table tbody td:last-child {
    text-align: right;
    font-weight: 600;
    color: #fff;
    font-size: 17px;
    white-space: nowrap;
}

.prijzen-note {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-left: 4px solid #dec252;
    padding: 30px 35px;
    margin-bottom: 50px;
}

.prijzen-note h4 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #dec252;
    font-weight: 700;
}

.prijzen-note p {
    color: #d0d0d0;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
}

.prijzen-cta {
    text-align: center;
    padding: 50px 0 0;
}

.prijzen-cta p {
    font-size: 18px;
    color: #d0d0d0;
    font-weight: 300;
    margin-bottom: 25px;
}

/* Prijzen responsive */
@media (max-width: 768px) {
    .prijzen-page-section {
        padding: 140px 20px 60px;
    }

    .prijzen-container h2 {
        font-size: 28px;
    }

    .prijzen-table thead th {
        padding: 14px 16px;
        font-size: 12px;
    }

    .prijzen-table tbody td {
        padding: 14px 16px;
        font-size: 14px;
    }

    .prijzen-table tbody td:last-child {
        font-size: 15px;
    }

    .prijzen-note {
        padding: 20px 25px;
    }
}

@media (max-width: 480px) {
    .prijzen-table thead th.th-nr {
        display: none;
    }

    .prijzen-table tbody td:first-child {
        display: none;
    }

    .prijzen-table thead th {
        padding: 12px;
        font-size: 11px;
    }

    .prijzen-table tbody td {
        padding: 12px;
        font-size: 13px;
    }
}
