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

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

.article-header {
    margin-bottom: 50px;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.article-intro {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

.hero-image {
    margin: 50px 0;
    width: 100%;
    background: #f5f5f5;
}

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

.article-body {
    margin-top: 50px;
}

.content-block {
    margin: 40px 0;
}

.lead-paragraph {
    font-size: 19px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.content-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.app-feature {
    margin: 70px 0;
    padding: 50px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.feature-number {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #3498db;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.app-feature h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.app-feature p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.feature-image {
    margin: 30px 0;
    width: 100%;
    background: #f5f5f5;
}

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

.insight-block {
    margin: 60px 0;
    padding: 40px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
}

.insight-text {
    font-size: 19px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
}

.cta-inline {
    margin: 70px 0;
    padding: 50px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    text-align: center;
}

.cta-inline h3 {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-inline p {
    font-size: 17px;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.conclusion-block {
    margin: 70px 0;
}

.conclusion-block h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

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

.form-section {
    margin: 80px 0;
    padding: 60px 50px;
    background: #f8f9fa;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.form-section > p {
    font-size: 17px;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #2980b9;
}

.disclaimer {
    margin: 60px 0;
    padding: 30px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #856404;
}

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

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

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

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

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 2000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background: #ffffff;
    color: #2c3e50;
}

.services-page,
.about-page,
.contact-page,
.thanks-page,
.legal-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

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

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 19px;
    color: #666;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 100%;
    height: 250px;
    background: #f5f5f5;
    overflow: hidden;
}

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

.service-content {
    padding: 40px;
}

.service-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

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

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    font-size: 15px;
    color: #666;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

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

.service-price {
    margin: 30px 0 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
}

.price-note {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #27ae60;
}

.btn-select-service {
    display: block;
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

.about-hero-content {
    text-align: center;
    margin-bottom: 40px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
}

.about-hero-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
}

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

.about-story,
.about-approach,
.about-mission,
.about-values {
    margin: 80px 0;
}

.story-content h2,
.about-approach h2,
.mission-content h2,
.about-values h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.story-content p,
.mission-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.story-image {
    margin-top: 40px;
    width: 100%;
    background: #f5f5f5;
}

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

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.approach-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

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

.about-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    margin: 80px 0;
}

.about-cta h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

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

.contact-info h2,
.contact-map h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

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

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

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

.contact-note {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 5px;
}

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

.map-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #ffffff;
    padding: 15px;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-size: 15px;
}

.contact-faq {
    margin-top: 80px;
}

.contact-faq h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

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

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

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.selected-service-info {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-info p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: center;
}

.steps-list {
    max-width: 500px;
    margin: 0 auto;
    padding-left: 25px;
}

.steps-list li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.thanks-contact {
    margin-top: 50px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.thanks-contact p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

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

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

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

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

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

.legal-section a {
    color: #3498db;
    text-decoration: none;
}

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

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

.cookies-table thead {
    background: #f8f9fa;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e9ecef;
    font-size: 15px;
}

.cookies-table th {
    font-weight: 700;
    color: #2c3e50;
}

.cookies-table td {
    color: #555;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .article-header h1 {
        font-size: 32px;
    }

    .article-intro {
        font-size: 18px;
    }

    .app-feature h2,
    .conclusion-block h2 {
        font-size: 24px;
    }

    .cta-inline {
        padding: 40px 25px;
    }

    .form-section {
        padding: 40px 25px;
    }

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

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

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

    .approach-grid,
    .values-list,
    .faq-grid {
        flex-direction: column;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}