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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
}

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

.nav a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #6b7280;
    padding: 4px 12px;
    background-color: #f3f4f6;
    border-radius: 4px;
}

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

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-left p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
    background-color: #e2e8f0;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

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

.intro-section h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-section p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.split-content-section {
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.split-content-section.reverse {
    flex-direction: row-reverse;
    background-color: #f8fafc;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left {
    padding-right: 60px;
}

.split-right {
    padding-left: 60px;
}

.split-content-section.reverse .split-left {
    padding-right: 0;
    padding-left: 60px;
}

.split-content-section.reverse .split-right {
    padding-left: 0;
    padding-right: 60px;
}

.split-content-section h3 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.split-content-section p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.split-content-section img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.tools-section {
    padding: 80px 20px;
    background-color: #1a202c;
    color: #ffffff;
}

.tools-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.tool-card {
    flex: 1;
    padding: 40px;
    background-color: #2d3748;
    border-radius: 8px;
}

.tool-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #60a5fa;
    font-weight: 600;
}

.tool-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5e0;
}

.services-pricing-section {
    padding: 80px 20px;
    background-color: #f8fafc;
}

.services-pricing-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

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

.service-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 700;
}

.service-item p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.6;
}

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

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

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a202c;
    font-weight: 700;
}

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

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

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

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

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

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

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fef3c7;
}

.disclaimer {
    font-size: 14px;
    color: #78350f;
    line-height: 1.7;
    text-align: center;
}

.footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h5 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #60a5fa;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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;
    margin: 0;
}

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

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

.btn-cookie.accept {
    background-color: #10b981;
    color: #ffffff;
}

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

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

.btn-cookie.reject:hover {
    background-color: #4b5563;
}

.page-hero {
    padding: 80px 20px;
    background-color: #f8fafc;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #1a202c;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    color: #4a5568;
}

.services-detail-section {
    padding: 60px 20px;
}

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

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

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

.service-detail-content h3 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.service-features li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #e5e7eb;
}

.service-detail-image img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

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

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

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

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

.cta-section .btn-primary:hover {
    background-color: #f3f4f6;
}

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

.about-intro-section p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.about-approach-section {
    padding: 60px 20px;
}

.approach-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.approach-item.reverse {
    flex-direction: row-reverse;
}

.approach-content {
    flex: 1;
}

.approach-content h3 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.approach-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
    background-color: #e5e7eb;
}

.approach-image img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

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

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

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

.value-item {
    flex: 1;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 700;
}

.value-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

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

.team-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a202c;
    font-weight: 700;
}

.team-section p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.contact-info h3 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.info-item h4 {
    font-size: 18px;
    color: #1a202c;
    margin-bottom: 8px;
    font-weight: 700;
}

.info-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.map-section {
    padding: 60px 20px;
    background-color: #f8fafc;
}

.map-section h3 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 32px;
    text-align: center;
    font-weight: 700;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

.thanks-section {
    padding: 120px 20px;
    background-color: #f8fafc;
    min-height: 500px;
}

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

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

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

.selected-service {
    padding: 20px;
    background-color: #dbeafe;
    border-radius: 6px;
    margin: 32px 0;
    font-size: 16px;
    color: #1e40af;
}

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

.legal-page h1 {
    font-size: 40px;
    color: #1a202c;
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    color: #1a202c;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    color: #1a202c;
    margin-top: 32px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.legal-page ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.6;
}

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

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

    .split-content-section,
    .split-content-section.reverse {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 20px;
    }

    .tools-grid,
    .values-grid {
        flex-direction: column;
    }

    .nav {
        display: none;
    }

    .header-content {
        padding: 20px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}