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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0052cc;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #6b6b6b;
    padding: 0.3rem 0.8rem;
    background-color: #f4f4f4;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: #0052cc;
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #0052cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #003d99;
}

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

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

.intro-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.intro-left {
    flex: 1.5;
}

.intro-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #0a0a0a;
}

.intro-left p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.intro-right {
    flex: 1;
}

.stats-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0052cc;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6b6b6b;
}

.services-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.services-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #0a0a0a;
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    display: flex;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

.service-image {
    flex: 0 0 40%;
    background-color: #f0f4f8;
}

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

.service-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.service-content p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0052cc;
    margin-bottom: 1rem;
}

.select-service {
    padding: 0.8rem 1.5rem;
    background-color: #0052cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #003d99;
}

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

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.form-header p {
    font-size: 1rem;
    color: #6b6b6b;
}

.service-display {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #e8f4fd;
    border-radius: 6px;
}

.service-display label {
    font-weight: 600;
    color: #0a0a0a;
    display: block;
    margin-bottom: 0.5rem;
}

.service-display span {
    color: #0052cc;
    font-size: 1.1rem;
}

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

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

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

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

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

.submit-button {
    padding: 1rem 2rem;
    background-color: #0052cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #003d99;
}

.submit-button:disabled {
    background-color: #b0b0b0;
    cursor: not-allowed;
}

.trust-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.trust-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #0a0a0a;
}

.trust-content {
    display: flex;
    gap: 3rem;
}

.trust-item {
    flex: 1;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.trust-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.citation {
    color: #0052cc;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.disclaimer-section {
    background-color: #fff9e6;
    padding: 2rem;
    margin: 3rem 0;
}

.disclaimer-text {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.6;
    text-align: center;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

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

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

.reference-item {
    font-size: 0.85rem;
    line-height: 1.5;
}

.reference-item a {
    color: #6bb6ff;
    text-decoration: none;
}

.reference-item a:hover {
    text-decoration: underline;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e5e5e5;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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;
    font-size: 0.95rem;
    color: #4a4a4a;
}

.cookie-content a {
    color: #0052cc;
    text-decoration: underline;
}

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

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

.btn-primary {
    background-color: #0052cc;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #003d99;
}

.btn-secondary {
    background-color: #e5e5e5;
    color: #333;
}

.btn-secondary:hover {
    background-color: #d0d0d0;
}

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

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

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

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

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

.page-hero {
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
    padding: 5rem 2rem;
    text-align: center;
}

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

.page-hero-content h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #e8f4fd;
    line-height: 1.7;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0a0a0a;
}

.about-text p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

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

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

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #0a0a0a;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #0052cc;
}

.value-card p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.expertise-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.expertise-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.expertise-left {
    flex: 1;
    background-color: #f0f4f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.expertise-right {
    flex: 1;
}

.expertise-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0a0a0a;
}

.expertise-right p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.expertise-list {
    list-style: none;
    margin: 2rem 0;
}

.expertise-list li {
    font-size: 1rem;
    color: #4a4a4a;
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.expertise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0052cc;
    font-weight: 700;
}

.approach-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.approach-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #0a0a0a;
}

.approach-steps {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.step-item {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0052cc;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.step-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.services-detail-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #0a0a0a;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0052cc;
}

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

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    font-size: 1rem;
    color: #4a4a4a;
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0052cc;
    font-weight: 700;
}

.service-detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0052cc;
    margin: 2rem 0 1.5rem;
}

.service-detail-image {
    flex: 0 0 45%;
    background-color: #f0f4f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-page-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

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

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #0052cc;
}

.info-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background-color: #e8f4fd;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: #0052cc;
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #0a0a0a;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-service {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e8f4fd;
    color: #0052cc;
    border-radius: 6px;
    font-weight: 600;
    margin: 2rem 0;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

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

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

.legal-page p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page ul li {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
    }

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

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

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

    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
        height: 300px;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

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

    .service-image {
        flex: 0 0 auto;
        height: 200px;
    }

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

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

    .value-card {
        flex: 1 1 100%;
    }
}