* {
    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: #222;
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #1d4ed8;
}

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

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

.header-asymmetric {
    background: #fff;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #6b7280;
    padding: 0.25rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 3px;
}

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

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

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

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

.hero-text-block {
    flex: 1;
    padding-left: 3rem;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111;
}

.hero-text-block p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.hero-visual-block {
    flex: 1;
    position: relative;
    transform: translateX(2rem);
}

.hero-visual-block img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-diagonal {
    background: #f9fafb;
    padding: 6rem 2rem;
    margin-top: 4rem;
    transform: skewY(-2deg);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    transform: skewY(2deg);
}

.text-column-offset {
    flex: 1.2;
}

.text-column-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111;
}

.text-column-offset p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.image-column-offset {
    flex: 0.8;
    background: #e5e7eb;
}

.image-column-offset img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

.services-header-offset h2 {
    font-size: 3rem;
    color: #111;
    margin-bottom: 0.5rem;
}

.services-header-offset p {
    font-size: 1.2rem;
    color: #6b7280;
}

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

.service-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

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

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

.card-image {
    background: #f3f4f6;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111;
}

.card-content p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1.5rem 0;
}

.btn-select-service {
    padding: 0.75rem 2rem;
    background: #111;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #2563eb;
}

.form-section-offset {
    background: #111;
    padding: 6rem 2rem;
    margin-top: 4rem;
}

.form-container-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-intro {
    flex: 1;
    color: #fff;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: #d1d5db;
}

.contact-form {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1d4ed8;
}

.trust-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #111;
}

.trust-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h3 {
    font-size: 1.75rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.trust-item p {
    color: #4b5563;
    font-size: 1.1rem;
}

.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 3rem 2rem 1rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

.footer-column a:hover {
    color: #2563eb;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #2563eb;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
}

.thanks-container {
    max-width: 800px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

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

.thanks-container p {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.thanks-container .selected-service {
    font-weight: 600;
    color: #2563eb;
}

.page-header {
    background: #f9fafb;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #111;
}

.page-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.page-content h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #111;
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: #374151;
}

.page-content p {
    margin-bottom: 1rem;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
}

.page-content ul {
    margin: 1rem 0 1rem 2rem;
    color: #4b5563;
}

.page-content ul li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f9fafb;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #2563eb;
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: #374151;
}

.contact-info strong {
    color: #111;
}

.contact-page-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-map {
    flex: 1;
    background: #e5e7eb;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

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

    .hero-text-block {
        padding-left: 0;
    }

    .hero-visual-block {
        transform: none;
    }

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

    .services-grid-irregular {
        flex-direction: column;
    }

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

    .form-container-asymmetric {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-page-content {
        flex-direction: column;
    }
}
