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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.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;
}

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

.btn-cookie {
    padding: 0.75rem 2rem;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
}

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

.btn-cookie-secondary {
    padding: 0.75rem 2rem;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
}

.btn-cookie-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1400px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

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

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

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

.hero-asymmetric {
    margin-top: 120px;
    min-height: 80vh;
    display: flex;
    position: relative;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.hero-content-offset {
    width: 50%;
    display: flex;
    align-items: center;
    padding-right: 3rem;
    z-index: 2;
}

.hero-text-block {
    max-width: 600px;
    margin-left: 5%;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.cta-hero:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.hero-image-overlap {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 50%;
    height: 70%;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #e0e0e0;
}

.intro-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.intro-left {
    flex: 1;
}

.intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-left p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.intro-right {
    flex: 1;
}

.intro-right img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

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

.section-header-offset {
    max-width: 1400px;
    margin: 0 auto 3rem 10%;
}

.section-header-offset h2 {
    font-size: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-large {
    width: calc(66.666% - 1rem);
}

.card-medium {
    width: calc(50% - 1rem);
}

.card-small {
    width: calc(33.333% - 1.33rem);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-info p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.25rem;
    color: #0066cc;
    font-weight: 700;
}

.cta-inline {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-text p {
    font-size: 1.15rem;
    color: #cccccc;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
    transition: background-color 0.3s, transform 0.2s;
}

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

.benefits-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

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

.benefit-block h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.benefit-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

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

.benefit-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #f0f4f8;
}

.form-container-asymmetric {
    max-width: 800px;
    margin-left: 10%;
}

.form-intro {
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.15rem;
    color: #555;
}

.contact-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.trust-section {
    padding: 4rem 2rem;
    background-color: #e8f4ff;
}

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

.trust-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.footer {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

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

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

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

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

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

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

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: #777;
    margin-top: 1rem;
    line-height: 1.6;
}

.page-hero-minimal {
    margin-top: 120px;
    padding: 4rem 2rem;
    background-color: #0066cc;
    color: #ffffff;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.story-image-left {
    flex: 1;
}

.story-image-left img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.story-text-right {
    flex: 1;
}

.story-text-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.story-text-right p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.values-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
}

.values-header h2 {
    font-size: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0066cc;
    font-weight: 600;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

.team-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.team-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.team-image {
    max-width: 1200px;
    margin: 0 auto;
}

.team-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

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

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

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

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.step p {
    color: #555;
    line-height: 1.7;
}

.cta-simple {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #f0f4f8;
    padding: 4rem 3rem;
    border-radius: 12px;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #0066cc;
    text-decoration: none;
    border: 2px solid #0066cc;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
}

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

.services-detail {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-header {
    display: flex;
    gap: 3rem;
    padding: 3rem;
}

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

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

.service-detail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-detail-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.service-detail-features {
    padding: 0 3rem 3rem;
}

.service-detail-features h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-detail-features ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-features ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.services-cta {
    padding: 5rem 2rem;
    background-color: #0066cc;
    color: #ffffff;
}

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

.services-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #0066cc;
    font-weight: 600;
}

.contact-detail p {
    color: #555;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
}

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

.contact-note {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.note-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.note-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.thanks-section {
    margin-top: 120px;
    padding: 6rem 2rem;
    background-color: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #0066cc;
    color: #ffffff;
    font-size: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-confirmation {
    font-size: 1.1rem;
    color: #0066cc;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.legal-page {
    margin-top: 120px;
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-intro {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.legal-content ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

.legal-updated {
    margin-top: 3rem;
    font-style: italic;
    color: #777;
}

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

.gdpr-table th,
.gdpr-table td,
.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ddd;
}

.gdpr-table th,
.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.gdpr-table td,
.cookie-table td {
    color: #555;
}

@media (max-width: 1200px) {
    .services-grid-asymmetric {
        flex-direction: column;
    }

    .card-large,
    .card-medium,
    .card-small {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        top: 1rem;
        width: 95%;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-asymmetric {
        flex-direction: column;
        margin-top: 180px;
    }

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        right: 0;
        top: 0;
        margin-top: 2rem;
    }

    .intro-wrapper,
    .story-layout,
    .contact-layout {
        flex-direction: column;
    }

    .cta-content-split,
    .service-detail-header {
        flex-direction: column;
    }

    .benefits-layout {
        flex-direction: column;
    }

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

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