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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.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: 1rem;
}

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

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

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.header-main {
    background: #34495e;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.brand-name {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
}

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

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

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

.ad-label {
    font-size: 0.85rem;
    color: #bdc3c7;
    font-style: italic;
    padding: 0.3rem 0.8rem;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.hero-offset {
    display: flex;
    min-height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero-content-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.25rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-image-right {
    flex: 1;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    background: #34495e;
}

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

.intro-asymmetric {
    display: flex;
    gap: 3rem;
    padding: 5rem 3rem;
    background: #ecf0f1;
    align-items: flex-start;
}

.intro-block-small {
    flex: 1;
    max-width: 400px;
    padding-top: 3rem;
}

.intro-block-small h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.intro-block-small p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.intro-block-large {
    flex: 2;
    position: relative;
    background: #95a5a6;
}

.intro-block-large img {
    width: 100%;
    display: block;
}

.overlay-text {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-left: 4px solid #3498db;
}

.overlay-text p {
    font-size: 1.15rem;
    color: #2c3e50;
    font-weight: 500;
}

.services-offset {
    padding: 5rem 3rem;
    background: #ffffff;
}

.section-header-angled {
    max-width: 800px;
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 6px solid #e74c3c;
}

.section-header-angled h2 {
    font-size: 2.5rem;
    color: #2c3e50;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.service-card.offset-1 {
    flex: 1 1 calc(45% - 1.25rem);
    transform: translateY(-20px);
}

.service-card.offset-2 {
    flex: 1 1 calc(55% - 1.25rem);
    transform: translateY(30px);
}

.service-card.offset-3 {
    flex: 1 1 calc(50% - 1.25rem);
    transform: translateY(-15px);
}

.service-card.offset-4 {
    flex: 1 1 calc(50% - 1.25rem);
    transform: translateY(25px);
}

.service-card.offset-5 {
    flex: 1 1 calc(60% - 1.25rem);
    transform: translateY(-10px);
}

.service-card.offset-6 {
    flex: 1 1 calc(40% - 1.25rem);
    transform: translateY(20px);
}

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

.service-card.selected {
    border: 3px solid #27ae60;
    box-shadow: 0 8px 25px rgba(39,174,96,0.3);
}

.service-image-wrap {
    height: 250px;
    overflow: hidden;
    background: #95a5a6;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-info p {
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-tag {
    font-size: 2rem;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.btn-select {
    padding: 0.75rem 1.5rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #2980b9;
}

.service-card.selected .btn-select {
    background: #27ae60;
}

.service-card.selected .btn-select:hover {
    background: #229954;
}

.form-section-irregular {
    display: flex;
    background: #f8f9fa;
    min-height: 600px;
    position: relative;
}

.form-container-angled {
    flex: 1;
    padding: 4rem 3rem;
    background: #ffffff;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    z-index: 2;
}

.form-container-angled h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.service-form {
    max-width: 600px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #ecf0f1;
    cursor: not-allowed;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    padding: 1rem 3rem;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.form-image-overlap {
    flex: 0.5;
    position: relative;
    background: #7f8c8d;
    margin-left: -5%;
}

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

.trust-section-split {
    display: flex;
    background: linear-gradient(to right, #2c3e50 50%, #34495e 50%);
    padding: 5rem 3rem;
    gap: 3rem;
}

.trust-content {
    flex: 1;
    color: #ffffff;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.testimonial-block {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial-block p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-style: italic;
    color: #bdc3c7;
}

.trust-visual {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.stats-box {
    background: rgba(255,255,255,0.15);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: #ecf0f1;
}

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

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

.footer-column-1 {
    flex: 2;
}

.footer-column-1 h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-column-2,
.footer-column-3 {
    flex: 1;
}

.footer-column-2 h4,
.footer-column-3 h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column-2 a,
.footer-column-3 a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-column-2 a:hover,
.footer-column-3 a:hover {
    color: #3498db;
}

.footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    font-size: 0.9rem;
    color: #95a5a6;
    line-height: 1.8;
}

.footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.content-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem 3rem;
    background: #ffffff;
}

.content-page h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #3498db;
}

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

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

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

.content-page ul,
.content-page ol {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

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

.contact-info-block {
    background: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.contact-info-block p {
    margin-bottom: 0.75rem;
}

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-box {
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 600px;
    text-align: center;
}

.thanks-box h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

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

.thanks-box .service-detail {
    background: #ecf0f1;
    padding: 1rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    font-weight: 600;
    color: #2c3e50;
}

.thanks-box .btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.thanks-box .btn-home:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

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

    .hero-image-right {
        clip-path: none;
        min-height: 400px;
    }

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

    .service-card {
        flex: 1 1 100% !important;
        transform: none !important;
    }

    .form-section-irregular {
        flex-direction: column;
    }

    .form-container-angled {
        clip-path: none;
    }

    .form-image-overlap {
        margin-left: 0;
        min-height: 300px;
    }

    .trust-section-split {
        flex-direction: column;
    }
}

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

    .main-nav {
        gap: 1rem;
    }

    .section-header-angled h2 {
        font-size: 1.8rem;
    }

    .content-page {
        padding: 1rem;
    }
}