/* BEWERTUNGEN PAGE STYLES */



/* Content Section */
.bewertungen-content {
    padding: 150px 80px 80px;
    background: #fff;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.content-container h1 {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

.text-content {
    margin-bottom: 50px;
}

.text-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #2d3032;
    margin-bottom: 20px;
    text-align: justify;
}

.contact-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #333;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #333;
    color: #fff;
}

/* Help Section */
.help-section {
    padding: 80px 80px;
    background: #fff;
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
}

.help-container h2 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.help-grid {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 0;
    align-items: start;
}

.help-spacer {
    /* Empty spacer column */
}

.help-item {
    text-align: center;
}

.help-icon {
    font-size: 45px;
    margin-bottom: 20px;
    color: #333;
}

.help-item h3 {
    font-size: 12px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.help-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Tablet */
@media (max-width: 1024px) {
    .bewertungen-content {
        padding: 120px 40px 60px;
    }

    .help-section {
        padding: 60px 40px;
    }

    .help-grid {
        grid-template-columns: 1fr 60px 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .bewertungen-content {
        padding: 100px 20px 40px;
    }

    .content-container h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .text-content p {
        font-size: 15px;
        text-align: left;
    }

    .help-section {
        padding: 40px 20px;
    }

    .help-container h2 {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .help-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .help-spacer {
        display: none;
    }

    .help-icon {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .content-container h1 {
        font-size: 28px;
    }

    .text-content p {
        font-size: 14px;
    }
}

/* Help Section with descriptions */
.help-section {
    padding: 80px 80px;
    background: #fff;
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
}

.help-container h2 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.help-grid {
    display: grid;
    align-items: start;
}

/* Three Column Grid with descriptions */
.help-grid.three-column {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.help-grid.three-column:last-child {
    margin-bottom: 0;
}

.help-item {
    text-align: center;
}

.help-icon {
    margin-bottom: 20px;
    color: #333;
    display: flex;
    justify-content: center;
}

.help-icon svg {
    color: #333;
}

.help-item h3 {
    font-size: 12px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.help-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    text-align: left;
}

.help-item p em strong {
    font-style: italic;
    font-weight: 700;
}

/* Tablet */
@media (max-width: 1024px) {
    .help-section {
        padding: 60px 40px;
    }

    .help-grid.three-column {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .help-grid.three-column .help-item:last-child:nth-child(odd) {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .help-section {
        padding: 40px 20px;
    }

    .help-container h2 {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .help-grid.three-column {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .help-grid.three-column .help-item:last-child:nth-child(odd) {
        grid-column: span 1;
        max-width: 100%;
    }

    .help-icon svg {
        width: 40px;
        height: 40px;
    }

    .help-item h3 {
        font-size: 11px;
    }

    .help-item p {
        font-size: 14px;
    }
}