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

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

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

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

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    padding: 60px 6%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.hero-content-offset {
    flex: 1;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 540px;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.cta-primary:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.hero-image-block {
    flex: 1;
    position: relative;
    transform: translateX(40px);
    background: #e9ecef;
}

.hero-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.intro-offset {
    display: flex;
    padding: 100px 6%;
    gap: 80px;
    align-items: center;
    background: #ffffff;
}

.intro-narrow {
    flex: 1.2;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
}

.intro-image-side {
    flex: 0.8;
    background: #f1f3f5;
}

.intro-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.services-asymmetric {
    padding: 100px 6%;
    background: #f8f9fa;
}

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

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

.section-header-offset p {
    font-size: 18px;
    color: #5a6c7d;
}

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

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    width: calc(33.333% - 27px);
}

.service-card.offset-left {
    transform: translateX(-30px);
}

.service-card.offset-right {
    transform: translateX(30px);
}

.service-card.offset-center {
    transform: translateY(20px);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.service-card.offset-left:hover,
.service-card.offset-right:hover {
    transform: translateY(-8px) translateX(0);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #e9ecef;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #1a252f;
    font-weight: 700;
}

.service-card p {
    margin: 0 24px 20px;
    color: #5a6c7d;
    font-size: 15px;
    line-height: 1.6;
}

.service-card .price {
    margin: 0 24px 24px;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.form-section-asymmetric {
    padding: 100px 6%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

.form-header-block {
    max-width: 560px;
    margin-bottom: 50px;
    margin-left: 12%;
}

.form-header-block h2 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-header-block p {
    font-size: 17px;
    opacity: 0.9;
}

.contact-form-offset {
    max-width: 600px;
    margin-left: 15%;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    font-size: 15px;
    background: rgba(255,255,255,0.95);
    color: #2c3e50;
    transition: all 0.3s;
}

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

.btn-submit {
    padding: 16px 40px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

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

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h3 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
    font-weight: 700;
}

.trust-points {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 240px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
}

.main-footer {
    background: #1a252f;
    color: #ffffff;
    padding: 60px 6% 30px;
}

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-col a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-disclaimer {
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.7;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: #3498db;
    color: #ffffff;
}

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

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
}

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

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

    .hero-content-offset {
        padding-right: 0;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-image-block {
        transform: translateX(0);
        height: 400px;
    }

    .intro-offset {
        flex-direction: column;
        gap: 40px;
    }

    .service-card {
        width: calc(50% - 20px);
    }

    .service-card.offset-left,
    .service-card.offset-right {
        transform: translateX(0);
    }

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }

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

@media (max-width: 640px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .hero-content-offset h1 {
        font-size: 36px;
    }

    .service-card {
        width: 100%;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .form-header-block {
        margin-left: 0;
    }

    .contact-form-offset {
        margin-left: 0;
    }
}

.page-header {
    padding: 80px 6% 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 12px;
    font-weight: 800;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.about-content-asymmetric {
    display: flex;
    padding: 100px 6%;
    gap: 80px;
    align-items: flex-start;
    background: #ffffff;
}

.about-text-block {
    flex: 1.3;
    padding-top: 40px;
}

.about-text-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
}

.about-text-block p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image-offset {
    flex: 0.7;
    background: #f1f3f5;
    transform: translateY(-60px);
}

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

.values-section {
    padding: 100px 6%;
    background: #f8f9fa;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header h2 {
    font-size: 42px;
    color: #1a252f;
    font-weight: 700;
}

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

.value-item {
    flex: 1;
    min-width: 240px;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.team-section {
    padding: 80px 6%;
    background: #ffffff;
}

.team-content {
    max-width: 800px;
    margin: 0 auto;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
}

.team-content p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-section {
    padding: 100px 6%;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.services-detail {
    padding: 60px 6%;
    background: #f8f9fa;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.service-detail-image {
    flex: 0.8;
    background: #e9ecef;
    min-height: 400px;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-detail-content ul {
    margin-bottom: 28px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 8px;
}

.service-pricing {
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.price-label {
    font-size: 14px;
    color: #6c757d;
    margin-right: 12px;
}

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

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-service:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.service-info {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.service-info p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-info ul {
    margin: 20px 0;
    padding-left: 24px;
}

.service-info ul li {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-layout {
    display: flex;
    min-height: 600px;
    background: #ffffff;
}

.contact-info-block {
    flex: 1;
    padding: 80px 6%;
    background: #f8f9fa;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-note {
    margin-top: 48px;
    padding: 20px;
    background: rgba(52, 152, 219, 0.1);
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.contact-note p {
    font-size: 15px;
    color: #2c3e50;
    line-height: 1.6;
}

.contact-map-placeholder {
    flex: 1;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    color: #ffffff;
}

.map-overlay p {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.map-overlay span {
    font-size: 18px;
    opacity: 0.9;
}

.thanks-section {
    padding: 100px 6%;
    background: #f8f9fa;
    min-height: 70vh;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 32px;
}

.thanks-info {
    padding: 20px;
    background: #e3f2fd;
    border-radius: 6px;
    margin-bottom: 36px;
}

.thanks-info p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

.thanks-next {
    text-align: left;
    margin-bottom: 40px;
    padding: 28px;
    background: #f8f9fa;
    border-radius: 6px;
}

.thanks-next h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-next ol {
    padding-left: 20px;
}

.thanks-next ol li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2c3e50;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #2c3e50;
    color: #ffffff;
    transform: translateY(-2px);
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 6% 100px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a252f;
    font-weight: 700;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: #34495e;
    font-weight: 600;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #34495e;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
    margin: 16px 0 24px 24px;
    padding-left: 20px;
}

.legal-page ul li,
.legal-page ol li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.legal-page a:hover {
    color: #2980b9;
}

.legal-page em {
    display: block;
    margin-top: 40px;
    font-size: 14px;
    color: #6c757d;
}

@media (max-width: 968px) {
    .about-content-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .about-image-offset {
        transform: translateY(0);
        height: 350px;
    }

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

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        min-height: 300px;
    }

    .contact-layout {
        flex-direction: column;
    }

    .thanks-content {
        padding: 40px 24px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}