* {
    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: #1a1a1a;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

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

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

.nav-links a:hover {
    color: #0066cc;
}

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

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

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

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #333;
}

.hero-image {
    flex: 1;
    background-color: #e8e8e8;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #0052a3;
}

.intro-section {
    padding: 100px 24px;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-text {
    flex: 2;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-card {
    background-color: #f5f5f5;
    padding: 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
}

.stat-label {
    font-size: 16px;
    color: #555;
    line-height: 1.4;
}

.approach-section {
    padding: 100px 24px;
    background-color: #fafafa;
}

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

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

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

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.approach-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: #444;
}

.approach-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.approach-list li {
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: #333;
}

.approach-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 20px;
}

.services-preview {
    padding: 100px 24px;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header p {
    font-size: 19px;
    color: #555;
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}

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

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

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0 24px 16px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin: 0 24px 16px;
    display: block;
}

.service-link {
    display: block;
    text-align: center;
    padding: 14px 24px;
    background-color: #f5f5f5;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-link:hover {
    background-color: #e0e0e0;
}

.testimonial-section {
    padding: 100px 24px;
    background-color: #f5f5f5;
}

.testimonial-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 calc(50% - 24px);
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-left: 4px solid #0066cc;
    border-radius: 4px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
}

.testimonial footer {
    font-size: 15px;
    color: #666;
    font-style: normal;
}

.contact-form-section {
    padding: 100px 24px;
    background-color: #ffffff;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 60px 24px;
    background-color: #f9f9f9;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

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

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

.footer-column {
    flex: 1 1 250px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

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

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

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

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #ffffff;
}

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

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

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

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

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    opacity: 0.8;
}

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 14px;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 19px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
}

.thanks-content .btn-home {
    display: inline-block;
    padding: 14px 32px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.thanks-content .btn-home:hover {
    background-color: #0052a3;
}

.page-header {
    padding: 80px 24px 40px;
    background-color: #f5f5f5;
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-header p {
    font-size: 19px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    font-weight: 700;
}

.page-content h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    font-weight: 600;
}

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

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 32px;
}

.page-content li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #444;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.service-item-image {
    flex: 0 0 300px;
    background-color: #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
}

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

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

.service-item-content h3 {
    font-size: 28px;
    margin: 0 0 16px;
    font-weight: 700;
}

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

.service-item-content .price {
    font-size: 26px;
    font-weight: 700;
    color: #0066cc;
    display: block;
    margin-top: 20px;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin: 0 0 24px;
    font-weight: 700;
}

.contact-info-item {
    margin-bottom: 20px;
}

.contact-info-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
    color: #333;
}

.contact-info-item p {
    font-size: 17px;
    color: #555;
    margin: 0;
}

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

    .hero-content {
        padding: 60px 24px;
    }

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

    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .service-item-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .nav-links {
        gap: 16px;
    }

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