* {
    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: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

.nav-links a:hover {
    color: #e67e22;
}

.hero-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    background-color: #34495e;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.story-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

.story-container h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.story-container p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cards-grid {
    padding: 80px 20px;
    background-color: #ffffff;
}

.grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.info-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background-color: #ecf0f1;
}

.info-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px 20px;
    color: #2c3e50;
}

.info-card p {
    margin: 0 20px 20px 20px;
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
}

.problem-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
}

.problem-container {
    max-width: 1000px;
    margin: 0 auto;
}

.problem-container h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.problem-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.problem-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.problem-text h4 {
    font-size: 24px;
    margin-bottom: 12px;
}

.problem-text p {
    font-size: 17px;
    line-height: 1.7;
}

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

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

.testimonials-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: #555555;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.services-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.services-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.services-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #555555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 370px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background-color: #ecf0f1;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px 25px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 25px 15px 25px;
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e67e22;
    margin: 20px 25px;
}

.select-service-btn {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px 25px;
    padding: 15px 30px;
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #d35400;
}

.form-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-intro {
    font-size: 17px;
    margin-bottom: 35px;
    color: #666666;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 16px;
    border: 2px solid #dce4ec;
    border-radius: 6px;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

.selected-display {
    padding: 14px;
    background-color: #ecf0f1;
    border-radius: 6px;
    font-size: 16px;
    color: #555555;
}

.submit-btn {
    padding: 18px 40px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #229954;
}

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.guarantee-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.guarantee-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.guarantee-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: #e8f8f5;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
}

.guarantee-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #27ae60;
}

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

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    opacity: 0.8;
}

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

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

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

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.6;
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #e67e22;
}

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

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

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #229954;
}

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #6c7a7b;
}

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

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

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

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    padding: 80px 20px;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-text-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.about-image-block {
    background-color: #ecf0f1;
}

.about-image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
}

.services-detail {
    padding: 80px 20px;
}

.services-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 20px;
}

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

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555555;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.detail-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.detail-cta:hover {
    background-color: #d35400;
}

.contact-section {
    padding: 80px 20px;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #e67e22;
}

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

.contact-text-block {
    flex: 1;
    min-width: 300px;
}

.contact-text-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-text-block p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555555;
}

.contact-text-block a {
    color: #e67e22;
    text-decoration: none;
}

.contact-text-block a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 60vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px auto;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555555;
    line-height: 1.7;
}

.order-summary {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-info {
    font-size: 16px;
    color: #666666;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-btn {
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-btn.primary {
    background-color: #e67e22;
    color: #ffffff;
}

.thanks-btn.primary:hover {
    background-color: #d35400;
}

.thanks-btn.secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.thanks-btn.secondary:hover {
    background-color: #dce4ec;
}

.legal-page {
    padding: 60px 20px;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-date {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-container h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-container ul,
.legal-container ol {
    margin: 20px 0 20px 30px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555555;
}

.legal-container a {
    color: #e67e22;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.gdpr-table th,
.gdpr-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #dce4ec;
}

.gdpr-table th {
    background-color: #34495e;
    color: #ffffff;
    font-weight: 600;
}

.gdpr-table td {
    background-color: #ffffff;
    color: #555555;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .story-container h2,
    .about-text-block h2,
    .service-detail-content h2,
    .contact-info-block h2,
    .contact-text-block h2 {
        font-size: 28px;
    }

    .services-container h2,
    .testimonials-container h2,
    .guarantee-container h2,
    .problem-container h2 {
        font-size: 32px;
    }

    .page-header h1,
    .thanks-container h1,
    .legal-container h1 {
        font-size: 32px;
    }

    .form-container {
        padding: 35px 25px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-content {
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}