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

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-label {
    font-size: 0.75rem;
    color: #999;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.hero-asymmetric {
    margin-top: 80px;
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f8f8f8;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 4rem 2rem 4rem 8%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #555;
    font-weight: 300;
}

.hero-image-layer {
    position: absolute;
    right: -10%;
    top: 5%;
    width: 65%;
    height: 90%;
    z-index: 1;
    background-color: #e8e8e8;
}

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

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

.story-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.story-text-block {
    margin-bottom: 3rem;
}

.story-text-block p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.story-callout {
    padding: 2.5rem 3rem;
    background-color: #f4f4f4;
    border-left: 4px solid #2c2c2c;
    margin-left: 15%;
}

.story-callout p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
}

.problem-section {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.problem-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.problem-card {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.problem-card.offset {
    margin-top: 4rem;
}

.problem-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.problem-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.problem-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8e8e8;
}

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

.insight-reveal {
    padding: 6rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    line-height: 1.3;
}

.insight-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.insight-visual {
    flex: 1;
    background-color: #1a1a1a;
}

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

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

.approach-layout {
    max-width: 1100px;
    margin: 0 auto;
}

.approach-header h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    text-align: center;
    color: #1a1a1a;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-card {
    padding: 2.5rem 3rem;
    background-color: #f8f8f8;
    border-left: 3px solid #2c2c2c;
    position: relative;
}

.step-offset-1 {
    margin-left: 0;
}

.step-offset-2 {
    margin-left: 10%;
}

.step-offset-3 {
    margin-left: 20%;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ddd;
    position: absolute;
    top: 1rem;
    right: 2rem;
}

.step-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-card p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    max-width: 500px;
}

.testimonials-inline {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

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

.testimonial-block {
    flex: 1;
    min-width: 320px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-top: 3px solid #2c2c2c;
}

.testimonial-block.offset-right {
    margin-top: 5rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.testimonial-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-color: #e8e8e8;
}

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

.trust-builders {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.trust-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f4f4f4;
}

.trust-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.services-reveal {
    padding: 6rem 2rem;
    background-color: #f8f8f8;
}

.services-header {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

.services-cards {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1;
    min-width: 350px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin: 0 1.5rem 1rem;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 1.5rem 1.5rem 1rem;
}

.select-service-btn {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.form-intro {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2.5rem;
}

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

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

.form-field label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.form-field input,
.form-field textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #2c2c2c;
}

.selected-service-display {
    padding: 1rem;
    background-color: #f4f4f4;
    font-weight: 600;
    color: #2c2c2c;
    display: none;
}

.submit-btn {
    padding: 1.2rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #bbb;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #252525;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #ffffff;
    color: #2c2c2c;
}

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

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

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

.page-header {
    margin-top: 80px;
    padding: 5rem 2rem;
    background-color: #f4f4f4;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-header-content p {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section.offset {
    margin-left: 10%;
    max-width: 800px;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.about-image-block {
    margin: 4rem 0;
    background-color: #f0f0f0;
}

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

.about-values {
    margin: 5rem 0;
    padding: 3rem;
    background-color: #f8f8f8;
}

.about-values h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

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

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.value-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.about-team {
    margin-top: 4rem;
    max-width: 800px;
}

.about-team h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-team p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

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

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

.services-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

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

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

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

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

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

.service-detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 1.5rem 0;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #666;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: 700;
}

.services-cta {
    max-width: 700px;
    margin: 5rem auto 0;
    text-align: center;
    padding: 3rem;
    background-color: #f4f4f4;
}

.services-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #444;
}

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

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-info-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f8f8;
}

.contact-info-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-info-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-additional {
    margin-top: 3rem;
    padding: 2.5rem;
    background-color: #f8f8f8;
}

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

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

.thanks-page-content {
    padding: 6rem 2rem;
    background-color: #ffffff;
    min-height: 60vh;
}

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

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.thanks-service-info {
    background-color: #f4f4f4;
    padding: 2rem;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #2c2c2c;
}

.legal-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-container li {
    margin-bottom: 0.8rem;
    color: #555;
}

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

    .hero-content-offset {
        padding: 3rem 1.5rem;
    }

    .hero-image-layer {
        width: 100%;
        position: relative;
        right: 0;
        top: 0;
        height: 400px;
    }

    .insight-content {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .step-offset-2,
    .step-offset-3 {
        margin-left: 0;
    }

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

    .about-section.offset {
        margin-left: 0;
    }
}