* {
    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;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.8rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    width: 45%;
    padding: 80px 5% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f7f9fc;
}

.hero-content-offset h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 1.15rem;
    margin-bottom: 38px;
    color: #4a5568;
    max-width: 550px;
}

.hero-image-overlap {
    width: 55%;
    position: relative;
    background-color: #e8eef5;
}

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

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

.cta-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.intro-offset {
    display: flex;
    padding: 100px 8% 80px 12%;
    gap: 80px;
    align-items: flex-start;
}

.intro-narrow {
    width: 60%;
}

.intro-narrow h2 {
    font-size: 2.3rem;
    margin-bottom: 32px;
    line-height: 1.3;
    color: #1a1a1a;
}

.intro-narrow p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.intro-image-right {
    width: 40%;
    position: relative;
    margin-top: 40px;
    background-color: #e8eef5;
}

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

.services-grid-irregular {
    padding: 120px 5%;
    background-color: #f9fafb;
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 70px;
    padding-left: 3%;
}

.section-header-left h2 {
    font-size: 2.8rem;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.section-header-left p {
    font-size: 1.15rem;
    color: #6c757d;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

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

.card-large {
    width: calc(60% - 15px);
}

.card-medium {
    width: calc(50% - 15px);
}

.card-small {
    width: calc(40% - 15px);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 24px 24px 14px 24px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 24px 20px 24px;
    color: #4a5568;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 24px;
}

.btn-select {
    margin: 0 24px 28px 24px;
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section-overlap {
    padding: 100px 8%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-container > p {
    margin-bottom: 40px;
    color: #6c757d;
    font-size: 1.05rem;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 12px;
}

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

.info-section-split {
    display: flex;
    padding: 100px 8%;
    gap: 70px;
    align-items: center;
}

.info-text-left {
    width: 55%;
}

.info-text-left h2 {
    font-size: 2.5rem;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.info-text-left p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 22px;
    line-height: 1.8;
}

.info-image-offset {
    width: 45%;
    background-color: #e8eef5;
}

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

.testimonials-stacked {
    padding: 100px 15%;
    background-color: #f7f9fc;
}

.testimonials-stacked h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 40px 50px;
    margin-bottom: 30px;
    border-left: 5px solid #3498db;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.testimonial-item p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-item cite {
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 70px 8% 30px 8%;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: #ffffff;
}

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

.footer-col p {
    line-height: 1.8;
    color: #b0b0b0;
}

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

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

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

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

.footer-disclaimer {
    background-color: #252525;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #b0b0b0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #808080;
}

.page-header-offset {
    padding: 120px 8% 60px 12%;
    background-color: #f7f9fc;
}

.page-header-offset h1 {
    font-size: 3.5rem;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.page-header-offset p {
    font-size: 1.3rem;
    color: #6c757d;
}

.about-intro-split {
    display: flex;
    padding: 100px 8%;
    gap: 80px;
    align-items: flex-start;
}

.about-text {
    width: 60%;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 24px;
    color: #4a5568;
    line-height: 1.8;
}

.about-image {
    width: 40%;
    background-color: #e8eef5;
}

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

.expertise-cards {
    padding: 100px 8%;
    background-color: #f9fafb;
}

.expertise-cards h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.expertise-item {
    width: calc(50% - 17.5px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.expertise-item h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

.expertise-item p {
    color: #4a5568;
    line-height: 1.7;
}

.timeline-section {
    padding: 100px 12%;
}

.timeline-section h2 {
    font-size: 2.6rem;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.timeline-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.timeline-year {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3498db;
    min-width: 120px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.7;
}

.values-offset {
    padding: 100px 15% 100px 20%;
    background-color: #f7f9fc;
}

.values-text h2 {
    font-size: 2.5rem;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.values-text p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #4a5568;
    line-height: 1.8;
}

.services-detail-layout {
    padding: 80px 8%;
}

.service-detail-item {
    display: flex;
    gap: 70px;
    margin-bottom: 100px;
    align-items: center;
}

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

.service-detail-content {
    width: 55%;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 28px;
    color: #4a5568;
    line-height: 1.8;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-detail-content ul {
    margin-bottom: 32px;
    padding-left: 20px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.7;
}

.service-detail-image {
    width: 45%;
    background-color: #e8eef5;
}

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

.service-price-box {
    background-color: #f7f9fc;
    padding: 24px 30px;
    border-radius: 8px;
    margin-bottom: 28px;
    border-left: 4px solid #3498db;
}

.price-label {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 6px;
}

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

.btn-service-cta {
    display: inline-block;
    padding: 14px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.contact-layout-offset {
    display: flex;
    padding: 80px 8%;
    gap: 80px;
}

.contact-info-block {
    width: 45%;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-detail p {
    color: #4a5568;
    line-height: 1.8;
}

.contact-additional {
    width: 55%;
    padding-left: 40px;
}

.contact-additional h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-additional h3 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-additional p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.contact-additional ul {
    margin-bottom: 28px;
    padding-left: 25px;
}

.contact-additional ul li {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 8%;
}

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

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

.thanks-content > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #4a5568;
}

.thanks-service-info {
    background-color: #f7f9fc;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.thanks-service-info p {
    margin-bottom: 10px;
    color: #6c757d;
}

.service-selected {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
}

.thanks-content h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    margin-top: 50px;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    margin-bottom: 50px;
}

.step-item {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 24px;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.step-item p {
    color: #4a5568;
    line-height: 1.7;
}

.thanks-cta {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.legal-page {
    padding: 80px 15%;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-page p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 24px;
    padding-left: 30px;
}

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

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table thead {
    background-color: #f7f9fc;
}

.cookie-table th,
.cookie-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #4a5568;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 30px;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: 30px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset,
    .hero-image-overlap {
        width: 100%;
    }

    .intro-offset,
    .about-intro-split,
    .info-section-split,
    .service-detail-item,
    .contact-layout-offset {
        flex-direction: column;
    }

    .intro-narrow,
    .intro-image-right,
    .about-text,
    .about-image,
    .info-text-left,
    .info-image-offset,
    .service-detail-content,
    .service-detail-image,
    .contact-info-block,
    .contact-additional {
        width: 100%;
    }

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

    .expertise-item {
        width: 100%;
    }

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