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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    z-index: 9999;
    display: none;
}

.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: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 18px 40px;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #ecf0f1;
    border-radius: 4px;
}

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

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

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

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 80px 40px 80px 80px;
    background-color: rgba(255, 255, 255, 0.95);
    margin-left: 8%;
}

.hero-asymmetric h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-subtext {
    font-size: 20px;
    line-height: 1.6;
    color: #5d6d7e;
    margin-bottom: 32px;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

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

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.intro-zigzag {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-block-left {
    flex: 1;
    padding-right: 40px;
}

.intro-block-left h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.intro-block-left p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5d6d7e;
}

.intro-image-right {
    flex: 1;
}

.intro-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.services-offset {
    padding: 120px 60px;
    background-color: #f8f9fa;
}

.services-header-right {
    text-align: right;
    max-width: 600px;
    margin-left: auto;
    margin-bottom: 60px;
    padding-right: 40px;
}

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

.services-header-right p {
    font-size: 19px;
    color: #5d6d7e;
}

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

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

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

.service-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 500px;
}

.service-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 400px;
}

.service-small {
    flex: 1 1 calc(40% - 15px);
    min-width: 350px;
}

.service-visual {
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.service-info p {
    font-size: 16px;
    color: #5d6d7e;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

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

.btn-service:hover {
    background-color: #2980b9;
    transform: translateX(4px);
}

.trust-diagonal {
    padding: 100px 60px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
    transform: skewY(-2deg);
    margin: 80px 0;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

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

.trust-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 17px;
    line-height: 1.6;
}

.form-section-offset {
    padding: 100px 60px;
    background-color: #ecf0f1;
}

.form-container {
    max-width: 700px;
    margin-left: 15%;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro {
    font-size: 18px;
    color: #5d6d7e;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 48px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 80px 60px 30px;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-block {
    flex: 1;
    min-width: 220px;
}

.footer-block h3,
.footer-block h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #bdc3c7;
}

.footer-block a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.footer-email {
    color: #bdc3c7;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #95a5a6;
}

.about-hero-offset {
    padding: 120px 60px 80px;
    background: linear-gradient(120deg, #f8f9fa 0%, #ecf0f1 100%);
}

.about-hero-content {
    max-width: 800px;
    margin-left: 10%;
}

.about-hero-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-lead {
    font-size: 22px;
    color: #5d6d7e;
    line-height: 1.6;
}

.about-story-zigzag {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.story-block {
    flex: 1;
}

.story-block h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.story-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5d6d7e;
}

.story-image-offset {
    flex: 1;
    padding-left: 40px;
}

.story-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.values-asymmetric {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.values-asymmetric h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(50% - 20px);
    min-width: 350px;
}

.value-offset-1 {
    margin-top: 0;
}

.value-offset-2 {
    margin-top: 40px;
}

.value-offset-3 {
    margin-top: 20px;
}

.value-offset-4 {
    margin-top: 60px;
}

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

.value-card p {
    font-size: 17px;
    color: #5d6d7e;
    line-height: 1.7;
}

.team-diagonal {
    padding: 100px 60px;
    background-color: #ecf0f1;
}

.team-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-intro p {
    font-size: 19px;
    color: #5d6d7e;
}

.team-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.team-member:nth-child(even) {
    flex-direction: row-reverse;
}

.member-visual {
    flex: 0 0 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
}

.member-visual img {
    width: 100%;
    height: 100%;
}

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.member-role {
    font-size: 16px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 16px;
}

.member-info p {
    font-size: 17px;
    color: #5d6d7e;
    line-height: 1.7;
}

.approach-offset {
    padding: 100px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.approach-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #5d6d7e;
    line-height: 1.8;
}

.services-hero-diagonal {
    padding: 120px 60px 80px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
}

.services-hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.services-hero-content p {
    font-size: 20px;
    line-height: 1.6;
}

.services-detail-offset {
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.service-layout-2 {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 17px;
    color: #5d6d7e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content ul {
    margin: 20px 0 32px 20px;
}

.service-detail-content li {
    font-size: 16px;
    color: #5d6d7e;
    margin-bottom: 12px;
}

.btn-service-large {
    padding: 16px 48px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-large:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.services-cta-diagonal {
    padding: 80px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-cta-content p {
    font-size: 19px;
    color: #5d6d7e;
    margin-bottom: 32px;
}

.contact-hero-offset {
    padding: 120px 60px 80px;
    background: linear-gradient(120deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
}

.contact-hero-content {
    max-width: 700px;
}

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

.contact-hero-content p {
    font-size: 20px;
    line-height: 1.6;
}

.contact-info-asymmetric {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-detail p {
    font-size: 17px;
    color: #5d6d7e;
    line-height: 1.7;
}

.contact-email-text {
    color: #5d6d7e;
}

.contact-visual-right {
    flex: 1;
}

.contact-image-container {
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
}

.contact-image-container img {
    width: 100%;
    height: 100%;
}

.contact-map-diagonal {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.map-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.map-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.map-intro p {
    font-size: 18px;
    color: #5d6d7e;
    line-height: 1.7;
}

.contact-cta-offset {
    padding: 100px 60px;
    background-color: #ecf0f1;
}

.contact-cta-content {
    max-width: 600px;
    margin-left: 15%;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-cta-content p {
    font-size: 18px;
    color: #5d6d7e;
    margin-bottom: 32px;
}

.thanks-hero-offset {
    padding: 120px 60px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-service {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 32px;
}

.thanks-content p {
    font-size: 17px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.thanks-next-steps {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.next-steps-content {
    max-width: 1200px;
    margin: 0 auto;
}

.next-steps-content h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 24px;
}

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

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

.legal-content {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.legal-updated {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-container ul {
    margin: 16px 0 16px 24px;
}

.legal-container li {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

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

    .hero-image-overlay {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .intro-zigzag,
    .about-story-zigzag,
    .contact-info-asymmetric {
        flex-direction: column;
    }

    .service-detail-card,
    .service-layout-2 {
        flex-direction: column;
    }

    .team-member,
    .team-member:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }

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

    .contact-cta-content {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-asymmetric h1 {
        font-size: 36px;
    }

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

    .service-large,
    .service-medium,
    .service-small {
        min-width: 100%;
    }

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

    .nav-floating {
        padding: 16px 20px;
    }

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