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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    background-color: #f8f9fa;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

.main-nav a:hover {
    color: #2c3e50;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.96);
    color: #ffffff;
    padding: 1.5rem;
    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;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    background-color: #f8f9fa;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-hero:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.intro-asymmetric {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background-color: #f8f9fa;
    align-items: center;
}

.intro-content {
    flex: 1.5;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

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

.features-stacked {
    padding: 4rem 0;
}

.feature-block {
    padding: 4rem 5%;
}

.feature-full {
    background-color: #2c3e50;
    color: #ffffff;
}

.feature-full h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-full p {
    font-size: 1.1rem;
    max-width: 800px;
    line-height: 1.8;
}

.feature-split {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
    align-items: center;
}

.feature-split.reverse {
    flex-direction: row-reverse;
    background-color: #f8f9fa;
}

.feature-image {
    flex: 1;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

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

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.services-cards {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 2rem);
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem;
    color: #666;
    flex: 1;
}

.service-card .price {
    padding: 1rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #3498db;
}

.btn-card {
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-card:hover {
    background-color: #34495e;
}

.form-section {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-section {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.trust-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.testimonials {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
}

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #fff8dc;
    border-top: 3px solid #f0ad4e;
}

.disclaimer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.disclaimer-section p {
    color: #666;
    line-height: 1.8;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

.page-hero {
    padding: 6rem 5%;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #bdc3c7;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
    align-items: center;
}

.service-detail.reverse {
    flex-direction: row-reverse;
    background-color: #f8f9fa;
}

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

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-detail-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.price-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.btn-action {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-action:hover {
    background-color: #34495e;
}

.service-detail-image {
    flex: 1;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-story {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.story-content {
    flex: 1.5;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.approach-section {
    padding: 6rem 5%;
}

.approach-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.approach-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-text {
    flex: 1.5;
}

.approach-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.approach-image {
    flex: 1;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-section {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.team-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 900px;
}

.cta-about {
    padding: 6rem 5%;
    text-align: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #bdc3c7;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.contact-layout {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

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

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 5%;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.thanks-service {
    padding: 1.5rem;
    background-color: #e8f4f8;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-page p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

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

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

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

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-split,
    .feature-split,
    .intro-asymmetric,
    .approach-split,
    .about-story,
    .contact-layout,
    .service-detail {
        flex-direction: column;
    }

    .feature-split.reverse {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

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

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

    .testimonials {
        flex-direction: column;
    }

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