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

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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

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

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

.hero-offset {
    display: flex;
    min-height: 85vh;
    padding: 60px 5%;
    background-color: #ecf0f1;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 60px;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-content-left p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #546e7a;
}

.hero-image-right {
    flex: 1;
    background-color: #bdc3c7;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.intro-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background-color: #ffffff;
}

.intro-text-block {
    flex: 1.2;
}

.intro-text-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-text-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #546e7a;
}

.intro-image-offset {
    flex: 0.8;
    margin-top: 40px;
    background-color: #bdc3c7;
}

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

.services-asymmetric {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.services-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
    margin-left: 8%;
}

.services-header-offset h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-header-offset p {
    font-size: 19px;
    color: #546e7a;
}

.service-card-left,
.service-card-right {
    display: flex;
    margin-bottom: 50px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.service-card-left {
    margin-right: 15%;
}

.service-card-right {
    margin-left: 15%;
}

.service-image {
    flex: 0.9;
    background-color: #bdc3c7;
}

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

.service-info {
    flex: 1.1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #546e7a;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
    display: block;
}

.select-service {
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 16px;
    align-self: flex-start;
}

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

.form-diagonal {
    padding: 100px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-wrapper {
    max-width: 650px;
    margin-left: 10%;
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-wrapper h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-wrapper p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #546e7a;
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.selected-service-display p {
    margin-bottom: 8px;
    color: #2c3e50;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

form textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.trust-block {
    padding: 80px 5%;
    background-color: #ffffff;
}

.trust-block h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonial-asymmetric {
    max-width: 700px;
    margin-bottom: 40px;
    padding: 30px 40px;
    background-color: #f8f9fa;
    border-left: 5px solid #3498db;
}

.testimonial-asymmetric:nth-child(odd) {
    margin-left: 5%;
}

.testimonial-asymmetric:nth-child(even) {
    margin-left: auto;
    margin-right: 5%;
}

.testimonial-asymmetric blockquote {
    font-size: 18px;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.7;
}

.testimonial-asymmetric cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 5% 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #ecf0f1;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    background-color: #1a252f;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

.cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #7f8c8d;
}

.about-hero {
    padding: 100px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 22px;
}

.about-content-offset {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background-color: #ffffff;
}

.about-text-main {
    flex: 1.3;
}

.about-text-main h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text-main p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #546e7a;
}

.about-image-offset {
    flex: 0.7;
    margin-top: -50px;
    background-color: #bdc3c7;
}

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

.values-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.value-block {
    max-width: 650px;
    padding: 30px 40px;
    margin-bottom: 30px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-block:nth-child(odd) {
    margin-left: 8%;
}

.value-block:nth-child(even) {
    margin-left: auto;
    margin-right: 8%;
}

.value-block h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-block p {
    font-size: 17px;
    color: #546e7a;
}

.approach-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

.approach-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
}

.approach-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    max-width: 800px;
}

.approach-step:nth-child(odd) {
    margin-left: 5%;
}

.approach-step:nth-child(even) {
    margin-left: auto;
    margin-right: 5%;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-content p {
    font-size: 17px;
    color: #546e7a;
}

.cta-about {
    padding: 80px 5%;
    background-color: #ecf0f1;
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-about p {
    font-size: 19px;
    margin-bottom: 30px;
    color: #546e7a;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.services-page-header {
    padding: 100px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.services-page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-page-header p {
    font-size: 22px;
}

.services-list-full {
    padding: 80px 5%;
    background-color: #ffffff;
}

.service-item-full {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
}

.service-item-full.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background-color: #bdc3c7;
}

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

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-details p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #546e7a;
}

.service-details ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-details ul li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #546e7a;
}

.service-price-block {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
}

.contact-hero {
    padding: 100px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 22px;
}

.contact-content {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background-color: #ffffff;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #bdc3c7;
    min-height: 400px;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-note {
    padding: 60px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-note h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-note p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 15px;
    color: #546e7a;
}

.thanks-hero {
    display: flex;
    min-height: 70vh;
    padding: 80px 5%;
    background-color: #ecf0f1;
    gap: 60px;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.thanks-content p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #546e7a;
}

.thanks-details {
    background-color: #e8f5e9;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.thanks-details p {
    margin-bottom: 8px;
    color: #2c3e50;
}

.thanks-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 5%;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #546e7a;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page ul li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #546e7a;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-offset,
    .intro-split,
    .service-card-left,
    .service-card-right,
    .about-content-offset,
    .contact-content,
    .thanks-hero,
    .service-item-full {
        flex-direction: column;
    }

    .hero-content-left {
        padding-right: 0;
    }

    .hero-content-left h1,
    .about-hero h1,
    .services-page-header h1,
    .contact-hero h1 {
        font-size: 32px;
    }

    .service-card-left,
    .service-card-right {
        margin-left: 0;
        margin-right: 0;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}