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

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

.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #ffd700;
    color: #1a1a1a;
}

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

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

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

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #ffd700;
}

.ad-label {
    font-size: 11px;
    color: #999;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

.mobile-menu {
    background-color: #1a1a1a;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-bottom: 1px solid #333;
}

.ad-label-mobile {
    font-size: 11px;
    color: #999;
    padding: 10px;
}

.hero-asymmetric {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 550px;
    padding: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    margin-left: 8%;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #ffd700;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.intro-story {
    padding: 100px 40px;
    background-color: #fff;
}

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

.story-text-narrow {
    text-align: left;
}

.story-text-narrow h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-text-narrow p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.offset-problem {
    padding: 80px 40px;
    background-color: #f5f5f5;
}

.problem-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 60px;
}

.problem-left {
    flex: 1;
    padding: 40px;
}

.problem-left h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    font-size: 17px;
    color: #555;
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #ddd;
}

.problem-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 28px;
    line-height: 1;
}

.problem-right-image {
    flex: 1;
    min-height: 400px;
    position: relative;
}

.problem-right-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.insight-reveal {
    padding: 100px 40px;
    background-color: #1a1a1a;
    color: #fff;
}

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

.insight-content h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.insight-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ddd;
}

.services-cards-asymmetric {
    padding: 100px 40px;
    background-color: #fff;
}

.services-heading {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

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

.card-1 {
    width: calc(50% - 20px);
    margin-top: 0;
}

.card-2 {
    width: calc(50% - 20px);
    margin-top: 40px;
}

.card-3 {
    width: calc(33.333% - 27px);
    margin-top: -20px;
}

.card-4 {
    width: calc(33.333% - 27px);
    margin-top: 20px;
}

.card-5 {
    width: calc(33.333% - 27px);
    margin-top: -30px;
}

.card-6 {
    width: calc(50% - 20px);
    margin-top: 0;
}

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

.service-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #ffd700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.testimonials-inline {
    padding: 80px 40px;
    background-color: #f9f9f9;
}

.testimonials-inline h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-left: 4px solid #ffd700;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 14px;
    color: #999;
    text-align: right;
}

.form-section-offset {
    padding: 100px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transform: rotate(-1deg);
}

.form-intro {
    margin-bottom: 40px;
    text-align: center;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 16px;
    color: #666;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    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: #ffd700;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #ffd700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.trust-building {
    padding: 80px 40px;
    background-color: #fff;
}

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

.trust-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.trust-points {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ddd;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #222;
    border-left: 3px solid #ffd700;
    font-size: 13px;
    line-height: 1.6;
    color: #bbb;
}

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

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

    .card-1, .card-2, .card-3, .card-4, .card-5, .card-6 {
        width: 100%;
        margin-top: 0 !important;
    }

    .problem-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-asymmetric {
        height: auto;
        min-height: 500px;
        flex-direction: column;
    }

    .hero-image-overlay {
        position: relative;
        width: 100%;
        height: 300px;
        clip-path: none;
    }

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

    .hero-title {
        font-size: 32px;
    }

    .form-container-asymmetric {
        padding: 30px;
        transform: none;
    }

    .testimonials-container {
        flex-direction: column;
    }

    .trust-points {
        flex-direction: column;
    }

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