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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background: #1a1a1a;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #4CAF50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #4CAF50;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
}

.hero-section {
    display: flex;
    min-height: 600px;
    background: #f5f5f5;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #555;
    max-width: 550px;
}

.cta-button {
    display: inline-block;
    background: #4CAF50;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    align-self: flex-start;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #45a049;
}

.hero-image {
    flex: 1;
    background: #e0e0e0;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-section {
    padding: 90px 20px;
    background: #ffffff;
}

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

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.trust-card {
    flex: 1;
    text-align: center;
}

.trust-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.trust-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.services-highlight {
    background: #2c3e50;
    padding: 0;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
}

.service-row {
    display: flex;
}

.service-image {
    flex: 1;
    background: #34495e;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-text {
    flex: 1;
    padding: 80px 70px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.service-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #ecf0f1;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #4CAF50;
    margin: 30px 0;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s;
}

.secondary-button:hover {
    background: #ffffff;
    color: #2c3e50;
}

.full-width-section {
    padding: 100px 20px;
}

.bg-light {
    background: #f8f9fa;
}

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

.full-width-section h2 {
    font-size: 34px;
    margin-bottom: 30px;
    line-height: 1.4;
    color: #1a1a1a;
}

.full-width-section p {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
}

.services-pricing {
    padding: 90px 20px;
    background: #ffffff;
}

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

.services-pricing h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pricing-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #f0f0f0;
}

.pricing-card h3 {
    font-size: 22px;
    padding: 20px 20px 10px;
    color: #1a1a1a;
}

.pricing-card p {
    padding: 0 20px 15px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.pricing-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #4CAF50;
    padding: 10px 20px;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background: #4CAF50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #45a049;
}

.testimonials-section {
    padding: 90px 20px;
    background: #ecf0f1;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.testimonial-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 15px;
    color: #777;
    font-style: italic;
}

.form-section {
    padding: 90px 20px;
    background: #ffffff;
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.service-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: #4CAF50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #45a049;
}

.disclaimer-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: center;
    font-style: italic;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #4CAF50;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #bbb;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #4CAF50;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 25px 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.cookie-content a {
    color: #4CAF50;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #4CAF50;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #45a049;
}

.cookie-btn.reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-btn.reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #4CAF50;
}

.thanks-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.thanks-content .selected-service {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 30px 0;
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
    }

    .service-row {
        flex-direction: column;
    }

    .trust-grid {
        flex-direction: column;
    }

    .footer-container {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-col {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #1a1a1a;
        padding: 20px;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .pricing-card {
        width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .service-form {
        padding: 25px;
    }
}

.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 20px;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-story {
    padding: 90px 20px;
    background: #ffffff;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.values-section {
    padding: 90px 20px;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.value-item {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border-left: 5px solid #4CAF50;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.team-section {
    padding: 90px 20px;
    background: #ffffff;
}

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
}

.stats-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 8px;
    flex: 1;
    max-width: 300px;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.modul-section {
    padding: 90px 20px;
    background: #ecf0f1;
}

.modul-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #4CAF50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #ffffff;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 19px;
    margin-bottom: 35px;
}

.cta-section .cta-button {
    background: #ffffff;
    color: #4CAF50;
}

.cta-section .cta-button:hover {
    background: #f0f0f0;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.service-detail-content .price {
    font-size: 32px;
    font-weight: 700;
    color: #4CAF50;
    margin: 25px 0;
    display: block;
}

.service-detail-content ul {
    list-style: none;
    margin: 20px 0;
}

.service-detail-content ul li {
    padding: 8px 0;
    font-size: 16px;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

.contact-section {
    padding: 90px 20px;
    background: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}

.contact-map {
    flex: 1;
    background: #e0e0e0;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
}

.legal-content {
    padding: 90px 20px;
    background: #ffffff;
}

.legal-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    margin-top: 40px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: #555;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .story-layout {
        flex-direction: column;
    }

    .stats-grid {
        flex-direction: column;
    }

    .service-detail {
        flex-direction: column;
    }

    .service-detail:nth-child(even) {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }
}