* {
    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-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    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: #2563eb;
}

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

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

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

.hero-content {
    flex: 1;
}

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

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-button {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #1d4ed8;
}

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

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

.intro-section p {
    font-size: 18px;
    color: #555;
    max-width: 900px;
}

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

.services-cards h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e0e0e0;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 24px;
}

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

.card-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 16px;
}

.select-service {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.select-service:hover {
    background: #1d4ed8;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

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

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

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

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

.submit-button {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-button:hover {
    background: #1d4ed8;
}

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

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

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.benefit-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2563eb;
}

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

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

.disclaimer-text {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

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

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 12px 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: 24px;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-btn.accept {
    background: #2563eb;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #1d4ed8;
}

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

.cookie-btn.reject:hover {
    background: #444;
}

.page-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

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

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

.service-detail-card {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

.service-detail-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.service-price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.cta-section {
    background: #2563eb;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-section .cta-button {
    background: #ffffff;
    color: #2563eb;
}

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

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

.about-intro {
    margin-bottom: 60px;
}

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

.about-intro p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.about-image-section {
    margin-bottom: 60px;
    border-radius: 12px;
    overflow: hidden;
    background: #e0e0e0;
}

.about-image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.about-values {
    margin-bottom: 60px;
}

.about-values h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2563eb;
}

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

.about-mission {
    margin-bottom: 60px;
}

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

.about-mission p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-expertise h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.expertise-item {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
}

.expertise-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.expertise-item p {
    font-size: 15px;
    color: #666;
}

.contact-page-content {
    padding: 80px 20px;
}

.contact-info-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 60px;
}

.contact-info-card {
    flex: 1;
}

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

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2563eb;
}

.contact-detail p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #e0e0e0;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-additional {
    max-width: 800px;
    margin: 0 auto;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-additional p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.thanks-details {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.thanks-next-steps {
    margin-bottom: 48px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 14px;
    color: #666;
}

.legal-content {
    padding: 40px 20px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #333;
}

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

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

.legal-content ul li {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.cookies-table td {
    font-size: 14px;
    color: #666;
}

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

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

    .nav-links {
        gap: 16px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

    .contact-info-grid {
        flex-direction: column;
    }

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

    .value-card,
    .expertise-item {
        flex: 1 1 100%;
    }
}