/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    word-break: break-word;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #ff8400;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff2a00;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #ff8400;
    color: white;
}

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

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #ff8400;
    border: 2px solid #ff8400;
}

.btn-outline:hover {
    background-color: #ff8400;
    color: white;
}

/* Utility Classes */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Cookie Management */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-category {
    margin-bottom: 20px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 5px;
}

.cookie-category input {
    margin-right: 10px;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.nav-brand h1 {
    font-size: 1.8rem;
    color: #ff8400;
    margin: 0;
}

.nav-brand a {
    color: #ff8400;
    text-decoration: none;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: #333;
    padding: 5px 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff8400;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ff8400;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -8px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff8400 0%, #ff2a00 100%);
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
}

.hero-image {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #ff8400 0%, #ff2a00 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Grid Layouts */
.info-grid,
.advantages-grid,
.packages-grid,
.achievements-grid,
.reviews-grid,
.services-grid,
.team-grid,
.values-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.info-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.achievements-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.info-card,
.advantage-card,
.package-card,
.achievement-card,
.review-card,
.service-card,
.team-member,
.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover,
.advantage-card:hover,
.package-card:hover,
.achievement-card:hover,
.review-card:hover,
.service-card:hover,
.team-member:hover,
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border: 3px solid #ff8400;
    transform: scale(1.05);
    position: relative;
}

.package-card.featured::before {
    content: "Beliebt";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff8400;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Icons */
.info-icon,
.advantage-icon,
.package-icon,
.achievement-icon,
.review-avatar,
.service-icon,
.team-photo,
.value-icon,
.mv-icon,
.contact-icon,
.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

/* Package Features */
.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff8400;
    margin: 15px 0;
}

.package-features {
    text-align: left;
    margin: 20px 0;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Achievement Numbers */
.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff8400;
    margin: 15px 0;
}

/* Reviews */
.review-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 15px 0;
}

.review-card p {
    font-style: italic;
    margin: 20px 0;
    color: #666;
}

.review-card h4 {
    color: #333;
    margin-bottom: 5px;
}

.review-card span {
    color: #999;
    font-size: 0.9rem;
}

/* Service Cards */
.service-rating {
    color: #ffc107;
    margin: 10px 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff8400;
    margin: 10px 0;
}

.service-features {
    text-align: left;
    margin: 20px 0;
}

.service-features li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff8400;
    font-weight: bold;
}

/* Company Content */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.content-text h2 {
    margin-bottom: 20px;
}

.full-width-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Team Section */
.team-position {
    color: #ff8400;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Service Comparison Table */
.comparison-table {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 40px;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

.comparison-header {
    background-color: #f8f9fa;
    font-weight: 600;
}

.comparison-header .comparison-plan.featured {
    background-color: #ff8400;
    color: white;
}

.comparison-feature,
.comparison-plan,
.comparison-value {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-feature {
    text-align: left;
    justify-content: flex-start;
}

.comparison-row:nth-child(even) {
    background-color: #f8f9fa;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: #ff8400;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-details h3 {
    margin-bottom: 10px;
    color: #333;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* Forms */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #ff8400;
    border-color: #ff8400;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

/* Business Hours */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.hours-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hours-list {
    margin-top: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
}

.time {
    color: #ff8400;
    font-weight: 600;
}

/* Service Areas */
.service-areas {
    margin-top: 40px;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.area-column h4 {
    color: #ff8400;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff8400;
    padding-bottom: 5px;
}

.area-column ul {
    list-style: none;
}

.area-column li {
    padding: 5px 0;
    color: #666;
}

.service-area-note {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-style: italic;
    color: #666;
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0 !important;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.next-steps {
    margin: 50px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #ff8400;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.contact-reminder {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.urgent-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card-small {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.legal-section h2 {
    color: #ff8400;
    border-bottom: 2px solid #ff8400;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.legal-section h3 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-section li {
    list-style-type: disc;
    margin-bottom: 8px;
}

.contact-info-legal {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.cookie-settings-button {
    text-align: center;
    margin: 30px 0;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ff8400;
}

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

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

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    color: #ccc;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ff8400;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        gap: 20px;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .hero h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .content-grid,
    .mission-vision-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-image {
        display: none;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .comparison-feature {
        background-color: #f8f9fa;
        font-weight: 600;
        justify-content: center;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .package-card.featured {
        transform: none;
    }

    .achievement-number {
        font-size: 2rem;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .section {
        padding: 60px 0;
    }

    .hero h2,
    .page-header h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .info-grid,
    .advantages-grid,
    .packages-grid,
    .achievements-grid,
    .reviews-grid,
    .services-grid,
    .team-grid,
    .values-grid,
    .hours-grid {
        grid-template-columns: 1fr;
    }

    .info-card,
    .advantage-card,
    .package-card,
    .achievement-card,
    .review-card,
    .service-card,
    .team-member,
    .value-card {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal {
        display: none;
    }

    .hero,
    .page-header {
        background: none;
        color: #333;
    }

    .section {
        padding: 20px 0;
    }

    .btn {
        display: none;
    }
}
