* {
    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;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 8px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    background-color: #f8f9fa;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #546e7a;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
}

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

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

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

.split-content {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
}

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

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

.split-text {
    flex: 1;
    padding: 60px;
}

.split-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.value-blocks {
    padding: 80px 20px;
    background-color: #ffffff;
}

.value-blocks h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-block {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-block h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #546e7a;
}

.testimonial-inline {
    padding: 80px 20px;
    background-color: #34495e;
}

.testimonial-inline blockquote {
    margin: 0;
    padding: 0;
}

.testimonial-inline p {
    font-size: 24px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #bdc3c7;
    font-style: normal;
}

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

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

.services-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e0e0e0;
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #546e7a;
    margin: 0 24px 16px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    margin: 0 24px 24px;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.form-container-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

.form-left {
    flex: 1;
}

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

.form-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 24px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #546e7a;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

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

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

.trust-section h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.trust-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

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

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

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
    margin: 0;
}

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

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

.page-header {
    padding: 80px 20px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

.service-detail-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 80px;
    gap: 60px;
    align-items: center;
}

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

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

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

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

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

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

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.6;
    color: #546e7a;
    margin-bottom: 8px;
}

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

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e0e0e0;
}

.price-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background-color: #e8f5e9;
    border-radius: 6px;
    margin-top: 20px;
}

.price-label {
    font-size: 16px;
    color: #546e7a;
}

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

.cta-services {
    padding: 80px 20px;
    background-color: #3498db;
    text-align: center;
}

.cta-services h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-services p {
    font-size: 18px;
    line-height: 1.7;
    color: #ecf0f1;
    margin-bottom: 32px;
}

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

.cta-services .cta-primary:hover {
    background-color: #ecf0f1;
}

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

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e0e0e0;
}

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

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.mission-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

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

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

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

.team-image {
    flex: 1;
}

.team-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e0e0e0;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

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

.values-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.values-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

.cta-about {
    padding: 80px 20px;
    background-color: #27ae60;
    text-align: center;
}

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

.cta-about p {
    font-size: 18px;
    line-height: 1.7;
    color: #ecf0f1;
    margin-bottom: 32px;
}

.cta-about .cta-primary {
    background-color: #ffffff;
    color: #27ae60;
}

.cta-about .cta-primary:hover {
    background-color: #ecf0f1;
}

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

.contact-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: stretch;
}

.contact-info {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

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

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

.contact-map img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

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

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 32px;
}

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

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

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

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

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

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 24px;
}

.thanks-details {
    margin: 40px 0;
    text-align: left;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-list {
    list-style: none;
    padding: 0;
}

.thanks-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: #546e7a;
}

.thanks-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 20px;
}

.thanks-service {
    margin: 32px 0;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 6px;
}

.thanks-service p {
    margin: 0;
    font-size: 16px;
    color: #27ae60;
    font-weight: 600;
}

.legal-page {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

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

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

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 8px;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-page a:hover {
    color: #2980b9;
    text-decoration: underline;
}

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

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

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

.cookie-table td {
    color: #546e7a;
}

@media (max-width: 768px) {
    .container-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .nav-main {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

    .hero-right {
        min-height: 300px;
    }

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

    .split-text {
        padding: 40px 30px;
    }

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

    .services-split-grid {
        flex-direction: column;
    }

    .form-container-split {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .about-intro-split,
    .team-split {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }
}