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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.ad-disclosure {
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 38px;
    z-index: 99;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #3498db;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #34495e;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    opacity: 0.95;
}

.intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-card {
    flex: 1;
}

.intro-card h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-card p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
}

.intro-image {
    flex: 1;
    background-color: #e0e0e0;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.problem-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.problem-cards {
    display: flex;
    gap: 30px;
}

.problem-card {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border-left: 4px solid #e74c3c;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.problem-card p {
    font-size: 16px;
    color: #555;
}

.solution-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.solution-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.solution-text {
    flex: 1;
}

.solution-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.solution-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
}

.solution-text ul {
    margin-top: 24px;
    padding-left: 24px;
}

.solution-text li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #555;
}

.solution-visual {
    flex: 1;
    background-color: #d0d0d0;
}

.solution-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-preview {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 240px;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.service-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-details h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-details p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
}

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

.feature-list li {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: auto;
}

.select-service:hover {
    background-color: #2980b9;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

.testimonial-card {
    flex: 1;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 15px;
    opacity: 0.8;
    font-style: italic;
}

.trust-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.trust-features {
    display: flex;
    gap: 40px;
}

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

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 16px;
    color: #555;
}

.form-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.form-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
}

.form-hint {
    font-size: 13px;
    color: #888;
    margin-top: 6px;
}

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

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

.checkbox-label a {
    color: #3498db;
}

.submit-btn {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content a {
    color: #3498db;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.cookie-btn:hover {
    opacity: 0.9;
}

.page-hero {
    background-color: #34495e;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

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

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

.about-story {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.story-block {
    flex: 1;
}

.story-block h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.story-block p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
}

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

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

.team-section {
    margin-bottom: 80px;
}

.team-section h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.production-info {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.production-text {
    flex: 1;
}

.production-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.production-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.production-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.commitment-section h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.commitment-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.service-card.detailed {
    min-width: 380px;
}

.cta-section {
    padding: 80px 0;
    background-color: #3498db;
    text-align: center;
    color: #ffffff;
}

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

.cta-section p {
    font-size: 20px;
    opacity: 0.95;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    background-color: #e0e0e0;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 24px;
    background-color: #ffffff;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.order-summary {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.order-summary h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.order-summary p {
    font-size: 17px;
    color: #555;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.step-card {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.step-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-secondary {
    background-color: #ffffff;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9;
}

.legal-content {
    padding: 60px 0 80px;
    background-color: #ffffff;
}

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

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-content a {
    color: #3498db;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 768px) {
    .main-nav {
        gap: 16px;
    }

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

    .intro-grid,
    .solution-content,
    .about-story,
    .production-info,
    .contact-grid {
        flex-direction: column;
    }

    .problem-cards,
    .testimonials-grid,
    .trust-features,
    .values-grid,
    .steps-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .faq-item {
        flex: 1 1 100%;
    }
}