* {
    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: #2a2a2a;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    background-color: #ffffff;
    position: relative;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #6b4ce6;
}

.hero-offset {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    gap: 60px;
    background-color: #ffffff;
    position: relative;
}

.hero-content-left {
    flex: 1;
    padding-right: 40px;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #4a4a4a;
}

.hero-image-right {
    flex: 1;
    position: relative;
    background-color: #e8e8e8;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #6b4ce6;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #5439c4;
    cursor: pointer;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #6b4ce6;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid #6b4ce6;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #6b4ce6;
    color: #ffffff;
    cursor: pointer;
}

.intro-asymmetric {
    padding: 70px 60px 70px 180px;
    background-color: #f5f3ff;
}

.intro-text-offset {
    max-width: 720px;
    margin-left: auto;
}

.intro-text-offset p {
    font-size: 22px;
    line-height: 1.8;
    color: #3a3a3a;
}

.services-preview {
    padding: 100px 60px;
    background-color: #ffffff;
}

.services-header-right {
    text-align: right;
    margin-bottom: 60px;
    padding-right: 80px;
}

.services-header-right h2 {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-card-large {
    flex: 1 1 calc(60% - 15px);
    background-color: #fafafa;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #f9f9f9;
}

.service-card-large img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 25px;
    background-color: #e0e0e0;
}

.service-card-small {
    flex: 1 1 calc(40% - 15px);
    background-color: #fafafa;
    padding: 35px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #f9f9f9;
}

.service-card-small img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
    background-color: #e0e0e0;
}

.service-card-medium {
    flex: 1 1 calc(50% - 15px);
    background-color: #fafafa;
    padding: 38px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #f9f9f9;
}

.service-card-medium img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 22px;
    background-color: #e0e0e0;
}

.service-card-large h3,
.service-card-small h3,
.service-card-medium h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card-large p,
.service-card-small p,
.service-card-medium p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #6b4ce6;
    margin-bottom: 20px;
    display: block;
}

.select-service {
    padding: 12px 28px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.feature-overlap {
    position: relative;
    padding: 100px 60px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    gap: 50px;
}

.feature-image-bg {
    flex: 1;
    background-color: #d8d8d8;
}

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

.feature-text-overlay {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.feature-text-overlay h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.feature-text-overlay p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

.testimonials-scattered {
    padding: 100px 60px;
    background-color: #ffffff;
}

.testimonials-scattered h2 {
    font-size: 42px;
    margin-bottom: 70px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.testimonial-offset-1,
.testimonial-offset-2,
.testimonial-offset-3 {
    padding: 35px;
    background-color: #f5f3ff;
    border-radius: 8px;
    margin-bottom: 30px;
}

.testimonial-offset-1 {
    margin-left: 0;
    max-width: 65%;
}

.testimonial-offset-2 {
    margin-left: auto;
    margin-right: 0;
    max-width: 70%;
}

.testimonial-offset-3 {
    margin-left: 15%;
    max-width: 60%;
}

.testimonials-scattered blockquote {
    font-size: 20px;
    line-height: 1.7;
    color: #2a2a2a;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonials-scattered cite {
    display: block;
    font-size: 16px;
    color: #6a6a6a;
    font-style: normal;
    font-weight: 600;
}

.cta-diagonal {
    padding: 100px 60px;
    background: linear-gradient(135deg, #6b4ce6 0%, #5439c4 100%);
    text-align: center;
    color: #ffffff;
}

.cta-diagonal h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-diagonal p {
    font-size: 20px;
    line-height: 1.7;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 60px 60px 40px;
    background-color: #1a1a1a;
    color: #e0e0e0;
    gap: 50px;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
}

.footer-left h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.footer-left p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-center {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-center a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-right p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.disclaimer-footer {
    font-size: 13px;
    color: #b0b0b0;
    margin-top: 20px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 40px;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #6b4ce6;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #5439c4;
}

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

.cookie-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.form-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.form-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-modal-content {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.form-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: 700;
    color: #888;
    cursor: pointer;
    transition: color 0.3s;
}

.form-close:hover {
    color: #1a1a1a;
}

.form-modal-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.selected-service-display {
    font-size: 16px;
    margin-bottom: 25px;
    color: #4a4a4a;
}

.selected-service-display strong {
    color: #6b4ce6;
}

#serviceForm label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2a2a2a;
}

#serviceForm input,
#serviceForm textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

#serviceForm input:focus,
#serviceForm textarea:focus {
    outline: none;
    border-color: #6b4ce6;
}

.submit-btn {
    padding: 14px 40px;
    background-color: #6b4ce6;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #5439c4;
}

.about-hero-offset {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    gap: 60px;
    background-color: #ffffff;
}

.about-text-irregular {
    flex: 1;
}

.about-text-irregular h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-text-irregular p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
}

.about-hero-offset img {
    flex: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e0e0e0;
}

.about-story-diagonal {
    padding: 90px 60px;
    background-color: #f5f3ff;
    display: flex;
    gap: 50px;
}

.story-block-1,
.story-block-2 {
    flex: 1;
}

.story-block-1 h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-block-1 p,
.story-block-2 p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
}

.approach-asymmetric {
    padding: 90px 60px;
    background-color: #ffffff;
}

.approach-asymmetric h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.approach-content {
    display: flex;
    gap: 60px;
}

.approach-left,
.approach-right {
    flex: 1;
}

.approach-left h3,
.approach-right h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.approach-left h3:first-child,
.approach-right h3:first-child {
    margin-top: 0;
}

.approach-left p,
.approach-right p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.team-scattered {
    padding: 90px 60px;
    background-color: #f0f0f0;
}

.team-scattered h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.team-member-large {
    flex: 1 1 calc(60% - 15px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.team-member-small {
    flex: 1 1 calc(40% - 15px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
}

.team-member-large h3,
.team-member-small h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
}

.team-member-large p:first-of-type,
.team-member-small p:first-of-type {
    font-size: 16px;
    color: #6b4ce6;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member-large p:last-of-type,
.team-member-small p:last-of-type {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.values-overlap {
    position: relative;
    padding: 100px 60px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 50px;
}

.values-bg {
    flex: 1;
    background-color: #d8d8d8;
}

.values-bg img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.values-text {
    flex: 1;
    padding: 40px;
}

.values-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.values-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

.services-header-diagonal {
    padding: 80px 60px 50px;
    background-color: #ffffff;
}

.services-header-diagonal h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header-diagonal p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 800px;
}

.services-detailed {
    padding: 60px 60px 100px;
    background-color: #fafafa;
}

.service-detail-asymmetric {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-features li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6b4ce6;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 16px;
    color: #6a6a6a;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #6b4ce6;
}

.service-detail-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.services-cta-offset {
    padding: 80px 60px;
    background-color: #ffffff;
    text-align: center;
}

.services-cta-offset h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-cta-offset p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.contact-hero-offset {
    padding: 80px 60px 50px;
    background-color: #ffffff;
    text-align: center;
}

.contact-hero-offset h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-hero-offset p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-layout-irregular {
    padding: 60px 60px 90px;
    background-color: #fafafa;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-diagonal {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.contact-image-offset {
    flex: 1;
    background-color: #e0e0e0;
}

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

.contact-additional {
    padding: 90px 60px;
    background-color: #ffffff;
}

.contact-additional h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.contact-tips-scattered {
    display: flex;
    gap: 40px;
}

.tip-block {
    flex: 1;
    padding: 35px;
    background-color: #f5f3ff;
    border-radius: 8px;
}

.tip-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.tip-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.thanks-hero-centered h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-hero-centered p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.thanks-service-display {
    font-size: 18px;
    color: #6b4ce6;
    font-weight: 600;
    padding: 15px 30px;
    background-color: #f5f3ff;
    display: inline-block;
    border-radius: 4px;
}

.thanks-next-steps {
    padding: 80px 60px;
    background-color: #fafafa;
}

.thanks-next-steps h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.steps-asymmetric {
    display: flex;
    gap: 40px;
}

.step-block {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.step-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.step-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-cta {
    padding: 60px 60px 100px;
    background-color: #ffffff;
    text-align: center;
}

.thanks-cta p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.legal-content {
    padding: 80px 60px 100px;
    background-color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 25px 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 8px;
}

.legal-content a {
    color: #6b4ce6;
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: #5439c4;
}

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-offset {
        flex-direction: column;
        padding: 50px 30px;
    }

    .hero-content-left h1 {
        font-size: 36px;
    }

    .services-grid-irregular,
    .team-grid-irregular,
    .contact-tips-scattered,
    .steps-asymmetric,
    .approach-content,
    .about-story-diagonal,
    .contact-layout-irregular {
        flex-direction: column;
    }

    .service-card-large,
    .service-card-small,
    .service-card-medium,
    .team-member-large,
    .team-member-small {
        flex: 1 1 100%;
    }

    .testimonial-offset-1,
    .testimonial-offset-2,
    .testimonial-offset-3 {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .feature-overlap,
    .values-overlap,
    .about-hero-offset {
        flex-direction: column;
    }

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

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

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

    .form-modal-content {
        padding: 30px;
    }
}