:root {
    --primary-color: #d4a574;
    --secondary-color: #8b5a3c;
    --accent-color: #e8d5c4;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --text-lighter: #999999;
    --background-light: #fafafa;
    --background-white: #ffffff;
    --border-light: #e5e5e5;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);
    --shadow-strong: rgba(0, 0, 0, 0.16);
    --max-width: 680px;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.editorial-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 20px;
    background: var(--background-white);
    min-height: 100vh;
}

.editorial-content {
    font-size: 17px;
    line-height: 1.7;
}

.article-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-light);
}

.article-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.article-meta {
    color: var(--text-lighter);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-intro {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 400;
}

.article-intro strong {
    color: var(--primary-color);
    font-weight: 600;
}

.article-body h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    margin: 48px 0 24px 0;
    color: var(--text-dark);
    line-height: 1.3;
}

.article-body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 16px 0;
    color: var(--text-dark);
    line-height: 1.3;
}

.article-body p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.article-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

.article-body em {
    font-style: italic;
    color: var(--text-light);
}

.article-image {
    margin: 40px 0;
    text-align: center;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: var(--transition);
}

.article-image img:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.article-image figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-lighter);
    font-style: italic;
    line-height: 1.4;
}

.cta-block {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 32px;
    margin: 40px 0;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 8px 32px var(--shadow-light);
}

.cta-block h3 {
    color: white;
    margin-bottom: 12px;
    font-size: 22px;
}

.cta-block p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-size: 16px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--text-dark);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow-strong);
    background: var(--secondary-color);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}

.cta-button.secondary:hover {
    background: var(--text-dark);
    color: white;
}

.testimonial {
    background: var(--background-light);
    border-left: 4px solid var(--primary-color);
    padding: 24px;
    margin: 32px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
}

.testimonial p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.5;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-light);
    font-weight: 500;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 28px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.info-box {
    background: var(--accent-color);
    padding: 24px;
    margin: 32px 0;
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-color);
}

.info-box h3 {
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.comparison-table {
    margin: 32px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow-light);
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table td {
    color: var(--text-dark);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.testimonial-card {
    background: var(--background-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px var(--shadow-light);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px var(--shadow-medium);
}

.stars {
    color: #ffc107;
    margin-bottom: 12px;
}

.stars i {
    font-size: 14px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.author strong {
    display: block;
    color: var(--text-dark);
    font-size: 14px;
}

.author span {
    color: var(--text-lighter);
    font-size: 13px;
}

.feature-highlight {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--accent-color) 100%);
    padding: 32px;
    margin: 32px 0;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.feature-highlight h3 {
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 24px;
    margin: 32px 0;
    border-radius: var(--border-radius);
}

.warning-box h3 {
    color: #856404;
    margin-bottom: 12px;
}

.warning-box p {
    color: #856404;
}

.final-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 48px 32px;
    margin: 48px 0;
    border-radius: var(--border-radius);
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 16px;
    font-size: 28px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    background: white;
    color: var(--secondary-color);
}

.cta-buttons .cta-button:hover {
    background: var(--text-dark);
    color: white;
}

.article-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tag {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background-light);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.share-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 48px 20px 24px;
    margin-top: 60px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.impressum {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.impressum h4 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

.impressum p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 8px;
}

.impressum strong {
    color: white;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.disclaimer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .editorial-container {
        padding: 20px 16px;
    }
    
    .article-header h1 {
        font-size: 26px;
    }
    
    .article-intro {
        font-size: 17px;
    }
    
    .article-body h2 {
        font-size: 22px;
    }
    
    .article-body h3 {
        font-size: 18px;
    }
    
    .cta-block {
        padding: 24px;
    }
    
    .final-cta {
        padding: 32px 24px;
    }
    
    .final-cta h2 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .cta-button {
        width: 100%;
        max-width: 280px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .editorial-content {
        font-size: 16px;
    }
    
    .article-header h1 {
        font-size: 22px;
    }
    
    .article-intro {
        font-size: 16px;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
}

.contact-intro {
    background: var(--accent-color);
    padding: 24px;
    margin: 32px 0;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.contact-info h2,
.contact-form-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--background-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-light);
}

.contact-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 2px;
    min-width: 20px;
}

.contact-item h3 {
    margin-bottom: 4px;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-form-page {
    background: var(--background-white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px var(--shadow-light);
}

.contact-form-page .form-group {
    margin-bottom: 20px;
}

.contact-form-page label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.contact-form-page input,
.contact-form-page select,
.contact-form-page textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 16px;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.contact-form-page input:focus,
.contact-form-page select:focus,
.contact-form-page textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.faq-section {
    margin: 48px 0;
}

.faq-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.faq-item {
    background: var(--background-light);
    padding: 24px;
    margin-bottom: 16px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 32px 0;
}

.team-member {
    text-align: center;
    padding: 24px;
    background: var(--background-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-medium);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 4px;
    color: var(--text-dark);
    font-size: 18px;
}

.member-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 14px;
}

.team-member p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

.stats-section {
    margin: 48px 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius);
    text-align: center;
}

.stats-section h2 {
    color: white;
    margin-bottom: 32px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Playfair Display', Georgia, serif;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--background-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.cert-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 2px;
}

.cert-item h4 {
    margin-bottom: 4px;
    color: var(--text-dark);
    font-size: 16px;
}

.cert-item p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .certifications {
        grid-template-columns: 1fr;
    }
    
    .stats-section {
        padding: 32px 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-page {
        padding: 24px 16px;
    }
    
    .contact-item {
        padding: 16px;
    }
    
    .faq-item {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
