* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

.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;
    min-width: 300px;
}

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

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

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

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

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

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

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 95%;
    flex-wrap: wrap;
}

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

.nav-ad-label {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

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

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

.hero-offset {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero-text-block {
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
    z-index: 2;
    margin-left: 8%;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

.hero-image-asymmetric {
    position: absolute;
    right: -100px;
    top: 15%;
    width: 55%;
    height: 70%;
    transform: rotate(3deg);
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background-color: #ecf0f1;
}

.hero-image-asymmetric img {
    width: 100%;
    height: 100%;
}

.intro-overlap {
    display: flex;
    align-items: center;
    padding: 100px 20px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.intro-card-left {
    flex: 1;
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 12px;
    transform: translateX(-20px);
    z-index: 2;
}

.intro-card-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-card-left p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.intro-visual-right {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(40px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-color: #bdc3c7;
}

.intro-visual-right img {
    width: 100%;
    height: 100%;
}

.value-proposition-skewed {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 20px;
    transform: skewY(-2deg);
    margin: 80px 0;
}

.vp-content {
    transform: skewY(2deg);
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
}

.vp-content h2 {
    font-size: 44px;
    margin-bottom: 24px;
}

.vp-content > p {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.vp-list li {
    font-size: 18px;
    padding: 16px 0;
    padding-left: 40px;
    position: relative;
    line-height: 1.6;
}

.vp-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-size: 24px;
    font-weight: 700;
}

.services-irregular {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-offset {
    font-size: 48px;
    margin-bottom: 60px;
    margin-left: 8%;
    color: #1a1a1a;
}

.service-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 280px;
}

.service-card h3 {
    font-size: 26px;
    margin: 24px 24px 16px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 24px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    padding: 0 24px;
    margin-bottom: 20px;
}

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

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.3);
}

.service-card-1 {
    width: 45%;
    margin-left: 5%;
}

.service-card-2 {
    width: 48%;
    margin-left: auto;
    margin-right: 5%;
}

.service-card-3 {
    width: 42%;
    margin-left: 10%;
}

.service-card-4 {
    width: 50%;
    margin-left: auto;
    margin-right: 8%;
}

.service-card-5 {
    width: 46%;
    margin-left: 6%;
}

.service-card-6 {
    width: 44%;
    margin-left: auto;
    margin-right: 10%;
}

.form-section-offset {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin-left: 15%;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-container > p {
    margin-bottom: 32px;
    color: #555;
    font-size: 16px;
}

.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 textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.trust-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.trust-item {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

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

.trust-item p {
    color: #555;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-service {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-weight: 600;
    color: #2c3e50;
}

.btn-back {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.3);
}

.content-page {
    padding: 120px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 44px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.content-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.content-page h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #34495e;
}

.content-page p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #555;
}

.content-page ul,
.content-page ol {
    margin-bottom: 16px;
    padding-left: 32px;
    line-height: 1.8;
    color: #555;
}

.content-page li {
    margin-bottom: 8px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 16px;
}

.contact-info strong {
    color: #2c3e50;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        text-align: center;
    }

    .hero-text-block {
        padding-right: 0;
        margin-left: 0;
        max-width: 100%;
    }

    .hero-image-asymmetric {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        transform: none;
        margin-top: 40px;
    }

    .intro-overlap {
        flex-direction: column;
    }

    .intro-card-left {
        transform: none;
    }

    .intro-visual-right {
        transform: none;
    }

    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5,
    .service-card-6 {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .form-container {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 36px;
    }

    .nav-floating {
        position: static;
        transform: none;
        border-radius: 0;
        justify-content: center;
    }

    .section-title-offset {
        margin-left: 0;
        font-size: 32px;
    }

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