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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
}

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

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

.nav-links a:hover {
    color: #1a73e8;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background-color: #dee2e6;
}

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

.cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #1a73e8;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-secondary {
    display: inline-block;
    background-color: #1a73e8;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.intro-offset {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a73e8;
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
}

.intro-visual {
    flex: 1;
    background-color: #f1f3f5;
}

.intro-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.services-grid {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 16px;
    color: #1a73e8;
}

.service-card p {
    margin: 0 24px 16px;
    color: #6c757d;
    line-height: 1.6;
}

.service-card .price {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 24px;
}

.btn-select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: #1557b0;
    transform: translateY(-1px);
}

.testimonial-inline {
    background-color: #f8f9fa;
    padding: 80px 40px;
    margin: 100px 0;
}

.testimonial-inline blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.testimonial-inline cite {
    font-size: 18px;
    color: #6c757d;
    font-style: normal;
}

.process-flow {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

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

.process-steps {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step {
    flex: 1 1 calc(25% - 24px);
    min-width: 220px;
    padding: 32px 24px;
    background-color: #ffffff;
    border-left: 4px solid #1a73e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a73e8;
    opacity: 0.3;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-container p {
    color: #6c757d;
    margin-bottom: 32px;
    line-height: 1.6;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
}

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

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

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

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

.footer-col p {
    color: #adb5bd;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

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

.footer-col ul li a {
    color: #adb5bd;
    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(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #adb5bd;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    padding: 24px 40px;
    z-index: 200;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #495057;
    line-height: 1.6;
}

.cookie-content a {
    color: #1a73e8;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #1a73e8;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #1557b0;
    transform: translateY(-1px);
}

.btn-cookie-reject {
    background-color: #e9ecef;
    color: #495057;
}

.btn-cookie-reject:hover {
    background-color: #dee2e6;
    transform: translateY(-1px);
}

.page-header {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 40px;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    color: #6c757d;
    line-height: 1.7;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

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

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a73e8;
}

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

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

.service-detail-content ul li {
    margin-bottom: 12px;
    color: #495057;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 24px 0;
}

.cta-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
    text-align: center;
}

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

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

.about-hero {
    background-color: #1a73e8;
    color: #ffffff;
    padding: 100px 40px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.95;
}

.about-story {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: #f1f3f5;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a73e8;
}

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

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

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

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

.value-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a73e8;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
}

.team-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

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

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 48px;
}

.team-visual {
    margin-bottom: 32px;
    background-color: #f1f3f5;
}

.team-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.team-description {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a73e8;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.cta-about {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

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

.contact-header {
    background-color: #1a73e8;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.95;
}

.contact-info-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-block {
    margin-bottom: 48px;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a73e8;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 8px;
}

.contact-map {
    flex: 1;
    background-color: #f1f3f5;
}

.contact-map img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.additional-info {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.additional-info h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.additional-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

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

.thanks-content {
    flex: 1.2;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #1a73e8;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

#selectedServiceMessage {
    font-weight: 600;
    color: #1a73e8;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 32px;
}

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

.btn-primary:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: #e9ecef;
    color: #495057;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #dee2e6;
    transform: translateY(-2px);
}

.thanks-image {
    flex: 1;
    background-color: #f1f3f5;
}

.thanks-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto 100px;
    padding: 0 40px;
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #1a73e8;
}

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

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

.legal-page ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-page ul li {
    margin-bottom: 12px;
    color: #495057;
    line-height: 1.7;
}

.legal-page strong {
    color: #2c3e50;
}

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

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

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

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .intro-offset,
    .about-story,
    .contact-info-section,
    .thanks-container {
        flex-direction: column;
    }

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

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

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}