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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

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

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

.main-nav a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 400px;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a252f;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #34495e;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    min-width: 400px;
    position: relative;
    overflow: hidden;
}

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

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

.cta-primary:hover {
    background-color: #1a252f;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.intro-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    min-height: 500px;
    flex-wrap: wrap;
}

.intro-visual {
    flex: 1;
    min-width: 400px;
    position: relative;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    min-width: 400px;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a252f;
}

.intro-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.services-grid {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a252f;
}

.section-header-center p {
    font-size: 1.1rem;
    color: #34495e;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    color: #1a252f;
    font-weight: 600;
}

.service-card p {
    font-size: 0.95rem;
    margin: 0 1.5rem 1.2rem 1.5rem;
    color: #555;
    line-height: 1.6;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
}

.btn-select-service {
    width: calc(100% - 3rem);
    margin: 1rem 1.5rem 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonials-stacked {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-stacked h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    color: #1a252f;
}

.testimonial-block {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.testimonial-block blockquote {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.testimonial-block cite {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

.insights-split {
    display: flex;
    min-height: 500px;
    flex-wrap: wrap;
}

.insights-text {
    flex: 1;
    min-width: 400px;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insights-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a252f;
}

.insights-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.insights-text a {
    margin-top: 1rem;
}

.insights-visual {
    flex: 1;
    min-width: 400px;
    position: relative;
    overflow: hidden;
}

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

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

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

.form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    color: #1a252f;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #34495e;
    font-size: 1.05rem;
}

.main-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.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 select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-text {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #7f8c8d;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem 2rem;
}

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

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

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

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

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

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

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

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

.email-display {
    font-family: monospace;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-cookie.btn-outline {
    background-color: transparent;
    border: 2px solid #ffffff;
}

.btn-cookie.btn-outline:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.page-hero {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a252f;
}

.page-hero p {
    font-size: 1.2rem;
    color: #34495e;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-detail-split {
    display: flex;
    min-height: 450px;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

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

.service-detail-content {
    flex: 1;
    min-width: 400px;
    padding: 3rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a252f;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.service-detail-visual {
    flex: 1;
    min-width: 400px;
    position: relative;
    overflow: hidden;
}

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

.service-pricing {
    margin: 2rem 0 1.5rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}

.price-label {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 500;
}

.price-amount {
    font-size: 2.2rem;
    color: #2c3e50;
    font-weight: 700;
}

.about-split {
    display: flex;
    min-height: 500px;
    flex-wrap: wrap;
    padding: 3rem 0;
}

.about-content {
    flex: 1;
    min-width: 400px;
    padding: 3rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a252f;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.about-visual {
    flex: 1;
    min-width: 400px;
    position: relative;
    overflow: hidden;
}

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

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

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    color: #1a252f;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 600;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.expertise-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    min-height: 500px;
    flex-wrap: wrap;
    padding: 3rem 0;
}

.expertise-visual {
    flex: 1;
    min-width: 400px;
    position: relative;
    overflow: hidden;
}

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

.expertise-content {
    flex: 1;
    min-width: 400px;
    padding: 3rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a252f;
}

.expertise-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.team-approach {
    padding: 4rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-approach h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #1a252f;
}

.team-approach p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.cta-about {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
    text-align: center;
}

.cta-about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a252f;
}

.cta-about p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #34495e;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-info-block {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #1a252f;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #34495e;
}

.contact-note {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.contact-note p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.location-context {
    padding: 4rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.location-context h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a252f;
}

.location-context p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.thanks-container {
    padding: 5rem 2rem;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.7;
}

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

.thanks-next {
    margin: 3rem 0;
    text-align: left;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.thanks-next h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a252f;
}

.thanks-next ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next ul li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
    color: #34495e;
}

.thanks-next ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem 2rem;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #1a252f;
}

.legal-page .last-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
}

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

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #34495e;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #34495e;
}

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

.legal-page ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.6rem;
    color: #34495e;
}

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

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

.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #e0e0e0;
}

.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    color: #34495e;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-split,
    .intro-split-reverse,
    .insights-split,
    .service-detail-split,
    .about-split,
    .expertise-split-reverse {
        flex-direction: column;
    }

    .hero-content,
    .hero-visual,
    .intro-text,
    .intro-visual,
    .insights-text,
    .insights-visual,
    .service-detail-content,
    .service-detail-visual,
    .about-content,
    .about-visual,
    .expertise-content,
    .expertise-visual {
        min-width: 100%;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .header-container {
        justify-content: center;
        gap: 1rem;
    }

    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 100%;
    }
}
