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

.nav-asymmetric {
    background-color: #1a1a2e;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
}

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #95a5a6;
    border-left: 2px solid #f39c12;
    padding-left: 1rem;
    margin-left: 2rem;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    gap: 3rem;
    align-items: center;
}

.hero-content-left {
    flex: 1;
    padding-right: 2rem;
    transform: translateY(-2rem);
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    background-color: #f39c12;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.hero-image-right {
    flex: 1;
    transform: translateY(2rem);
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    object-fit: cover;
}

.intro-asymmetric {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-block-offset {
    flex: 1.5;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateX(-1rem);
}

.intro-block-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

.intro-block-offset p {
    font-size: 1.1rem;
    color: #555;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    color: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(243,156,18,0.3);
}

.stat-card.offset-top {
    transform: translateX(2rem);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
}

.services-asymmetric {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.services-header-offset {
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 1.15rem;
    color: #666;
    max-width: 600px;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-large {
    flex: 1 1 calc(60% - 1rem);
}

.card-medium {
    flex: 1 1 calc(48% - 1rem);
}

.card-small {
    flex: 1 1 calc(38% - 1rem);
}

.card-accent {
    flex: 1 1 100%;
    background: linear-gradient(135deg, #1a1a2e, #2c3e50);
    color: #fff;
}

.card-accent h3,
.card-accent p {
    color: #fff;
}

.offset-right {
    margin-top: 3rem;
}

.offset-left {
    margin-top: -2rem;
}

.offset-top {
    margin-top: 2rem;
}

.service-image {
    width: 100%;
    height: 250px;
    background-color: #e9ecef;
    overflow: hidden;
}

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

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

.service-card p {
    margin: 0 1.5rem 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

.service-price {
    margin: auto 1.5rem 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
}

.card-accent .service-price {
    color: #f39c12;
}

.form-section-offset {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.form-container-asymmetric {
    flex: 1.2;
    background-color: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-2rem);
}

.form-header h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 700;
}

.form-header p {
    color: #666;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1.1rem 2rem;
    background-color: #f39c12;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.form-image-offset {
    flex: 1;
    transform: translateY(3rem);
}

.form-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    object-fit: cover;
}

.trust-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.trust-content-irregular h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-weight: 700;
    text-align: center;
}

.testimonials-asymmetric {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #f39c12;
    font-size: 0.9rem;
}

.info-section-offset {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
}

.info-block {
    flex: 1.5;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

.info-block p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.cta-block-irregular {
    flex: 1;
    background: linear-gradient(135deg, #1a1a2e, #2c3e50);
    padding: 3rem;
    border-radius: 8px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(2rem);
}

.cta-block-irregular h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-block-irregular p {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.cta-secondary {
    display: inline-block;
    background-color: #f39c12;
    color: #fff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #e67e22;
}

.footer-asymmetric {
    background-color: #1a1a2e;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

.footer-block {
    flex: 1 1 250px;
}

.footer-block h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #f39c12;
    font-weight: 600;
}

.footer-block p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

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

.footer-block ul li a:hover {
    color: #f39c12;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #95a5a6;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ecf0f1;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-accept {
    background-color: #f39c12;
    color: #fff;
}

.btn-reject {
    background-color: transparent;
    color: #ecf0f1;
    border: 2px solid #ecf0f1;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.85;
}

.cookie-policy-link {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

.page-header {
    background: linear-gradient(135deg, #1a1a2e, #2c3e50);
    color: #fff;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
    background-color: #fff;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.page-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a2e;
    font-weight: 600;
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
    font-weight: 600;
}

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

.page-content ul,
.page-content ol {
    margin: 1rem 0 1.5rem 2rem;
    color: #555;
}

.page-content li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-detail {
    margin: 1.5rem 0;
}

.contact-detail strong {
    color: #1a1a2e;
    display: block;
    margin-bottom: 0.5rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.service-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

.service-item h3 {
    margin-top: 0;
    color: #1a1a2e;
}

.service-item p {
    margin-bottom: 1rem;
}

.service-item .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
}

.about-section {
    margin: 3rem 0;
}

.about-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    object-fit: cover;
}

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

    .hero-content-left,
    .hero-image-right {
        transform: none;
    }

    .intro-asymmetric,
    .form-section-offset,
    .info-section-offset {
        flex-direction: column;
    }

    .services-grid-irregular .service-card {
        flex: 1 1 100%;
    }

    .offset-right,
    .offset-left,
    .offset-top {
        margin-top: 0;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .ad-disclosure {
        margin-left: 0;
        border-left: none;
        border-top: 2px solid #f39c12;
        padding-left: 0;
        padding-top: 0.5rem;
    }
}