* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #27ae60;
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.floating-nav {
    position: fixed;
    top: 50px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    gap: 15px;
}

.nav-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.nav-links a:hover {
    color: #27ae60;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 120px 60px 60px 60px;
    overflow: hidden;
    background-color: #f0f4f3;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 540px;
    margin-left: 8%;
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    color: #1a252f;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-visual-overlap {
    position: absolute;
    right: -5%;
    top: 12%;
    width: 52%;
    height: 75%;
    z-index: 1;
    transform: rotate(2deg);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    background-color: #e8f5e9;
}

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

.cta-primary {
    display: inline-block;
    background-color: #27ae60;
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #27ae60;
    padding: 16px 36px;
    text-decoration: none;
    border: 2px solid #27ae60;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #27ae60;
    color: white;
}

.offset-block {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 80px;
    background-color: white;
}

.intro-statement {
    background-color: #fdfefe;
}

.content-narrow-left {
    max-width: 520px;
    margin-right: auto;
}

.content-narrow-left h2 {
    font-size: 2.4rem;
    color: #1a252f;
    margin-bottom: 24px;
    line-height: 1.25;
}

.content-narrow-left p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 18px;
}

.visual-card-right {
    flex-shrink: 0;
    width: 420px;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-30px);
    background-color: #e8f5e9;
}

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

.services-overview-asymmetric {
    padding: 120px 60px;
    background-color: #f9fafb;
}

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

.services-header-centered h2 {
    font-size: 2.8rem;
    color: #1a252f;
    margin-bottom: 18px;
}

.services-header-centered p {
    font-size: 1.15rem;
    color: #5a6c7d;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 0;
    width: 340px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
    transform: translateY(-4px);
}

.service-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: #1a252f;
    margin: 24px 24px 12px 24px;
}

.service-card p {
    font-size: 1rem;
    color: #5a6c7d;
    margin: 0 24px 20px 24px;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 0 24px 20px 24px;
}

.service-select {
    margin: 0 24px 24px 24px;
    padding: 14px 24px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: #229954;
}

.offset-top {
    transform: translateY(-20px);
}

.offset-bottom {
    transform: translateY(20px);
}

.offset-center {
    transform: translateY(0);
}

.offset-right {
    transform: translateX(15px);
}

.offset-left {
    transform: translateX(-15px);
}

.offset-bottom-right {
    transform: translate(15px, 20px);
}

.testimonial-inline-offset {
    padding: 80px 60px;
    background-color: #27ae60;
}

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

.testimonial-content blockquote {
    font-size: 1.6rem;
    color: white;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 20px;
}

.testimonial-content cite {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
}

.form-section-asymmetric {
    position: relative;
    padding: 100px 60px;
    background-color: #fdfefe;
    display: flex;
    gap: 60px;
    align-items: center;
}

.form-container-offset {
    max-width: 520px;
}

.form-container-offset h2 {
    font-size: 2.4rem;
    color: #1a252f;
    margin-bottom: 16px;
}

.form-container-offset p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: #34495e;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

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

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

.cta-submit {
    padding: 16px 36px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-submit:hover {
    background-color: #229954;
}

.form-visual-overlap {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    background-color: #e8f5e9;
}

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

.trust-indicators {
    padding: 70px 60px;
    background-color: #ecf0f1;
    text-align: center;
}

.trust-content h3 {
    font-size: 2rem;
    color: #1a252f;
    margin-bottom: 16px;
}

.trust-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.footer-asymmetric {
    background-color: #1a252f;
    color: white;
    padding: 60px 60px 30px 60px;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #27ae60;
}

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

.footer-col a {
    display: block;
    color: #b0bec5;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #27ae60;
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #90a4ae;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #78909c;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 37, 47, 0.97);
    padding: 24px 60px;
    z-index: 1002;
    display: none;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: #27ae60;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #229954;
}

.cookie-btn.reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.about-hero-offset {
    padding: 120px 60px 80px 60px;
    background-color: #f0f4f3;
}

.about-intro-wide {
    max-width: 900px;
    margin-left: 10%;
}

.about-intro-wide h1 {
    font-size: 3.2rem;
    color: #1a252f;
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-large {
    font-size: 1.4rem;
    color: #546e7a;
    line-height: 1.6;
}

.about-philosophy-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 70px;
    align-items: flex-start;
    background-color: white;
}

.philosophy-text-left {
    max-width: 580px;
}

.philosophy-text-left h2 {
    font-size: 2.4rem;
    color: #1a252f;
    margin-bottom: 24px;
}

.philosophy-text-left p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 18px;
}

.philosophy-visual-right {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(30px);
    background-color: #e8f5e9;
}

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

.approach-staggered {
    padding: 100px 60px;
    background-color: #f9fafb;
}

.centered-heading {
    font-size: 2.8rem;
    color: #1a252f;
    text-align: center;
    margin-bottom: 60px;
}

.approach-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.approach-item {
    background-color: white;
    padding: 40px;
    width: 340px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.approach-item h3 {
    font-size: 1.6rem;
    color: #1a252f;
    margin-bottom: 16px;
}

.approach-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.offset-1 {
    transform: translateY(-15px);
}

.offset-2 {
    transform: translateY(15px);
}

.offset-3 {
    transform: translateY(-10px);
}

.team-section-minimal {
    padding: 80px 60px;
    background-color: white;
    text-align: center;
}

.team-section-minimal h2 {
    font-size: 2.4rem;
    color: #1a252f;
    margin-bottom: 20px;
}

.team-intro {
    font-size: 1.1rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.cta-offset-section {
    padding: 100px 60px;
    background-color: #27ae60;
}

.cta-content-left {
    max-width: 600px;
    margin-left: 10%;
}

.cta-content-left h2 {
    font-size: 2.6rem;
    color: white;
    margin-bottom: 20px;
}

.cta-content-left p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.services-header-full {
    padding: 120px 60px 60px 60px;
    background-color: #f0f4f3;
    text-align: center;
}

.services-header-full h1 {
    font-size: 3rem;
    color: #1a252f;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #546e7a;
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-layout-1,
.service-detail-layout-2,
.service-detail-layout-4,
.service-detail-layout-5 {
    display: flex;
    padding: 100px 60px;
    gap: 70px;
    align-items: center;
}

.service-detail-layout-1,
.service-detail-layout-4 {
    background-color: white;
}

.service-detail-layout-2,
.service-detail-layout-5 {
    background-color: #f9fafb;
}

.service-content-left,
.service-content-right {
    max-width: 550px;
}

.service-content-left h2,
.service-content-right h2 {
    font-size: 2.4rem;
    color: #1a252f;
    margin-bottom: 20px;
}

.service-content-left p,
.service-content-right p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style-position: inside;
    margin: 20px 0;
}

.service-features li {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 10px;
    padding-left: 8px;
}

.pricing-info {
    margin: 24px 0;
}

.price-label {
    font-size: 1rem;
    color: #5a6c7d;
    margin-right: 10px;
}

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

.service-visual-left,
.service-visual-right {
    flex-shrink: 0;
    width: 420px;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    background-color: #e8f5e9;
}

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

.service-detail-layout-3 {
    padding: 100px 60px;
    background-color: white;
}

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

.service-content-centered h2 {
    font-size: 2.6rem;
    color: #1a252f;
    margin-bottom: 20px;
    text-align: center;
}

.service-content-centered p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 30px;
    text-align: center;
}

.service-two-col {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.service-two-col .col {
    flex: 1;
}

.pricing-info-centered {
    text-align: center;
    margin-bottom: 20px;
}

.service-detail-layout-6 {
    padding: 100px 60px;
    background-color: #f9fafb;
}

.service-content-full {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.content-left-side {
    flex: 1;
}

.content-left-side h2 {
    font-size: 2.4rem;
    color: #1a252f;
    margin-bottom: 20px;
}

.content-left-side p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.content-right-side {
    flex-shrink: 0;
    width: 380px;
}

.content-right-side img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #e8f5e9;
}

.services-cta-bottom {
    padding: 100px 60px;
    background-color: #1a252f;
    text-align: center;
}

.services-cta-bottom h2 {
    font-size: 2.6rem;
    color: white;
    margin-bottom: 16px;
}

.services-cta-bottom p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.contact-header-offset {
    padding: 120px 60px 60px 60px;
    background-color: #f0f4f3;
}

.contact-header-offset h1 {
    font-size: 3rem;
    color: #1a252f;
    margin-bottom: 16px;
}

.contact-intro {
    font-size: 1.2rem;
    color: #546e7a;
    max-width: 700px;
}

.contact-info-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: flex-start;
    background-color: white;
}

.contact-details-left {
    max-width: 500px;
}

.contact-details-left h2 {
    font-size: 2.4rem;
    color: #1a252f;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #27ae60;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-visual-right {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(40px);
    background-color: #e8f5e9;
}

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

.contact-cta-bottom {
    padding: 80px 60px;
    background-color: #f9fafb;
    text-align: center;
}

.contact-cta-bottom h2 {
    font-size: 2.4rem;
    color: #1a252f;
    margin-bottom: 16px;
}

.contact-cta-bottom p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.thanks-hero-centered {
    padding: 120px 60px;
    background-color: #f0f4f3;
    text-align: center;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 16px;
}

.service-confirmation {
    font-size: 1.1rem;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 30px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.thanks-visual {
    max-width: 600px;
    height: 350px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    background-color: #e8f5e9;
}

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

.next-steps-section {
    padding: 100px 60px;
    background-color: white;
}

.next-steps-section h2 {
    font-size: 2.6rem;
    color: #1a252f;
    text-align: center;
    margin-bottom: 50px;
}

.steps-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    background-color: #f9fafb;
    padding: 40px;
    width: 320px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.step-item h3 {
    font-size: 1.5rem;
    color: #27ae60;
    margin-bottom: 16px;
}

.step-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.legal-content {
    padding: 120px 60px;
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
}

.legal-content h1 {
    font-size: 2.8rem;
    color: #1a252f;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 2rem;
    color: #1a252f;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #27ae60;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 40px;
}

.legal-content ul li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: #27ae60;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .floating-nav {
        top: 40px;
        right: 20px;
        padding: 15px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 100px 30px 60px 30px;
    }

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-content-offset h1 {
        font-size: 2.5rem;
    }

    .hero-visual-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 300px;
        transform: none;
        margin-top: 40px;
    }

    .offset-block,
    .about-philosophy-asymmetric,
    .service-detail-layout-1,
    .service-detail-layout-2,
    .service-detail-layout-4,
    .service-detail-layout-5,
    .form-section-asymmetric,
    .contact-info-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .visual-card-right,
    .philosophy-visual-right,
    .service-visual-left,
    .service-visual-right,
    .form-visual-overlap,
    .contact-visual-right {
        width: 100%;
        transform: none;
    }

    .service-two-col {
        flex-direction: column;
    }

    .service-content-full {
        flex-direction: column;
    }

    .content-right-side {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

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