* {
    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-minimal {
    padding: 2rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background: #f5f5f5;
    border-radius: 3px;
}

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

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

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

.hero-minimal {
    padding: 8rem 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text-large h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #4a4a4a;
    max-width: 650px;
    margin-bottom: 3rem;
}

.hero-image-wrap {
    margin-top: 4rem;
    background-color: #f0f4f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.content-spacious {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.text-block-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.text-block-centered p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.services-preview {
    padding: 6rem 5%;
    background: #f9fafb;
}

.section-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 600;
}

.service-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    background-color: #e8ecef;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1.5rem 0;
}

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

.btn-select-service {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-select-service:hover {
    background: #0052a3;
}

.form-section {
    padding: 6rem 5%;
    background: #ffffff;
}

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

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.selected-service-display {
    padding: 1rem;
    background: #e8f4f8;
    border-left: 4px solid #0066cc;
    margin-bottom: 2rem;
    font-weight: 600;
    display: none;
}

.selected-service-display.visible {
    display: block;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.statement-block {
    padding: 6rem 5%;
    background: #f9fafb;
}

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

.statement-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.statement-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.statement-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8ecef;
}

.info-disclaimer {
    padding: 4rem 5%;
    background: #fff8e6;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

.disclaimer-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.disclaimer-box p {
    color: #4a4a4a;
    line-height: 1.7;
}

.footer-main {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

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

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

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

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

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

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

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie:not(.btn-secondary) {
    background: #0066cc;
    color: #ffffff;
}

.btn-cookie:not(.btn-secondary):hover {
    background: #0052a3;
}

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

.btn-cookie.btn-secondary:hover {
    background: #444;
}

.page-hero-simple {
    padding: 6rem 5% 3rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.3rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

.text-image-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.text-side {
    flex: 1;
    min-width: 300px;
}

.text-side h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.image-side {
    flex: 1;
    min-width: 300px;
}

.image-side img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8ecef;
}

.values-section {
    padding: 6rem 5%;
    background: #f9fafb;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.team-approach {
    padding: 6rem 5%;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.approach-content img {
    flex: 1;
    min-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8ecef;
}

.approach-text {
    flex: 1;
    min-width: 300px;
}

.approach-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.statement-full {
    padding: 6rem 5%;
    background: #0066cc;
    color: #ffffff;
}

.statement-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.statement-box blockquote {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    font-style: italic;
}

.services-detailed {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.contact-layout {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #0066cc;
}

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

.contact-note {
    padding: 1.5rem;
    background: #f0f4f8;
    border-radius: 6px;
    margin-top: 2rem;
}

.contact-note p {
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-image-block {
    flex: 1;
    min-width: 300px;
}

.contact-image-block img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8ecef;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.service-confirmation {
    padding: 1.5rem;
    background: #e8f4f8;
    border-left: 4px solid #0066cc;
    margin-bottom: 3rem;
    text-align: left;
    display: none;
}

.service-confirmation.visible {
    display: block;
}

.next-steps {
    text-align: left;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

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

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

.btn-secondary {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

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

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

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

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

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

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

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

.legal-page a {
    color: #0066cc;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-text-large h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .text-block-centered h2 {
        font-size: 2rem;
    }

    .page-hero-simple h1 {
        font-size: 2.5rem;
    }

    .nav-main {
        width: 100%;
        justify-content: space-around;
    }

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

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

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