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

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

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

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

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

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

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

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

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

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

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

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

.header-asymmetric {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2980b9;
}

.hero-offset {
    max-width: 1400px;
    margin: 80px auto 100px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1;
    min-width: 320px;
    padding-left: 60px;
}

.hero-text-block h2 {
    font-size: 52px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 19px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 35px;
}

.hero-image-offset {
    flex: 1;
    min-width: 320px;
    position: relative;
    margin-top: -40px;
    background-color: #ecf0f1;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 42px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.intro-asymmetric {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 30px;
}

.content-overlap {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.text-column-narrow {
    flex: 2;
    min-width: 320px;
}

.text-column-narrow h3 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.3;
}

.text-column-narrow p {
    font-size: 18px;
    line-height: 1.9;
    color: #5a6c7d;
    margin-bottom: 22px;
}

.highlight-box {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 40px 35px;
    border-left: 5px solid #2980b9;
    margin-top: 60px;
}

.quote-style {
    font-size: 20px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
}

.visual-break {
    max-width: 100%;
    margin: 100px 0;
    background-color: #ecf0f1;
}

.visual-break img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-grid-offset {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 30px;
}

.section-header-left {
    margin-bottom: 70px;
    padding-left: 80px;
}

.section-header-left h3 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 18px;
}

.section-header-left p {
    font-size: 19px;
    color: #7f8c8d;
}

.services-asymmetric-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: flex-start;
}

.service-card {
    width: calc(33.333% - 34px);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fafbfc;
}

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

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

.service-card h4 {
    font-size: 23px;
    color: #2c3e50;
    margin: 25px 25px 15px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0 25px 20px;
}

.service-card .price {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 25px;
}

.btn-select {
    display: block;
    width: calc(100% - 50px);
    margin: 20px 25px 25px;
    padding: 13px 0;
    background-color: #2980b9;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #21618c;
}

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

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

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

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

.card-offset-5 {
    margin-top: 30px;
}

.card-offset-6 {
    margin-top: 50px;
}

.cta-floating {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
}

.cta-content-offset {
    background-color: #34495e;
    color: #ffffff;
    padding: 60px 80px;
    border-radius: 8px;
    margin-left: 120px;
    position: relative;
}

.cta-content-offset h3 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content-offset p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 38px;
    background-color: #ffffff;
    color: #34495e;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.process-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 30px;
}

.process-header-right {
    text-align: right;
    margin-bottom: 60px;
    padding-right: 100px;
}

.process-header-right h3 {
    font-size: 42px;
    color: #2c3e50;
}

.process-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.block-left {
    margin-right: 150px;
}

.block-right {
    margin-left: 150px;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #bdc3c7;
    min-width: 80px;
}

.process-item h4 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

.testimonials-offset {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 30px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px 35px;
    border-left: 4px solid #2980b9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card:nth-child(1) {
    margin-top: 0;
}

.testimonial-card:nth-child(2) {
    margin-top: 50px;
}

.testimonial-card:nth-child(3) {
    margin-top: 25px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.form-section-asymmetric {
    max-width: 1400px;
    margin: 120px auto 100px;
    padding: 0 30px;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 100px;
    background-color: #f8f9fa;
    padding: 50px 60px;
    border-radius: 8px;
}

.form-container-offset h3 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.form-container-offset > p {
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 35px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #d5dbdb;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

.footer-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
    margin-bottom: 10px;
}

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

.footer-block ul li {
    margin-bottom: 10px;
}

.footer-block ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.about-hero-offset {
    max-width: 1400px;
    margin: 80px auto 60px;
    padding: 0 30px;
}

.about-text-primary {
    padding-left: 120px;
}

.about-text-primary h2 {
    font-size: 56px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-text-primary p {
    font-size: 21px;
    color: #7f8c8d;
}

.about-story-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
    display: flex;
    gap: 70px;
    align-items: center;
    flex-wrap: wrap;
}

.story-column-left {
    flex: 1;
    min-width: 320px;
    background-color: #ecf0f1;
}

.story-column-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-column-right {
    flex: 1;
    min-width: 320px;
}

.story-column-right h3 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
}

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

.values-offset {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 30px;
}

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

.values-header h3 {
    font-size: 42px;
    color: #2c3e50;
}

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

.value-block {
    width: calc(50% - 23px);
    min-width: 300px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.value-block h4 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.block-position-1 {
    margin-top: 0;
}

.block-position-2 {
    margin-top: 40px;
}

.block-position-3 {
    margin-top: 20px;
}

.block-position-4 {
    margin-top: 60px;
}

.experience-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.experience-content-offset {
    flex: 1;
    min-width: 320px;
}

.experience-content-offset h3 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 35px;
}

.experience-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.experience-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    padding-left: 25px;
    border-left: 3px solid #2980b9;
}

.experience-image-offset {
    flex: 1;
    min-width: 320px;
    margin-top: -60px;
    background-color: #ecf0f1;
}

.experience-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.team-cta-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
}

.cta-box-asymmetric {
    max-width: 600px;
    margin-left: auto;
    margin-right: 80px;
    background-color: #f8f9fa;
    padding: 50px 60px;
    border-radius: 8px;
    text-align: center;
}

.cta-box-asymmetric h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cta-box-asymmetric p {
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.services-hero-offset {
    max-width: 1400px;
    margin: 80px auto 60px;
    padding: 0 30px;
}

.services-intro-block {
    padding-right: 150px;
    text-align: right;
}

.services-intro-block h2 {
    font-size: 54px;
    color: #2c3e50;
    margin-bottom: 18px;
}

.services-intro-block p {
    font-size: 20px;
    color: #7f8c8d;
}

.services-detailed-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.service-detail-image {
    flex: 1;
    min-width: 320px;
    background-color: #ecf0f1;
}

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

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-detail-content h3 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.service-pricing-block {
    margin: 30px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 8px;
}

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

.card-layout-1 .service-detail-image {
    order: 1;
}

.card-layout-1 .service-detail-content {
    order: 2;
}

.card-layout-2 .service-detail-image {
    order: 2;
}

.card-layout-2 .service-detail-content {
    order: 1;
}

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

.cta-services-box {
    max-width: 700px;
    margin-left: 100px;
    background-color: #34495e;
    color: #ffffff;
    padding: 50px 60px;
    border-radius: 8px;
}

.cta-services-box h3 {
    font-size: 34px;
    margin-bottom: 15px;
}

.cta-services-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-hero-offset {
    max-width: 1400px;
    margin: 80px auto 60px;
    padding: 0 30px;
}

.contact-intro {
    padding-left: 100px;
}

.contact-intro h2 {
    font-size: 54px;
    color: #2c3e50;
    margin-bottom: 18px;
}

.contact-intro p {
    font-size: 20px;
    color: #7f8c8d;
}

.contact-content-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
    display: flex;
    gap: 70px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 320px;
}

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

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

.info-item h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.info-note {
    font-size: 15px;
    color: #95a5a6;
    margin-top: 10px;
}

.contact-image-offset {
    flex: 1;
    min-width: 320px;
    margin-top: 80px;
    background-color: #ecf0f1;
}

.contact-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-additional-info {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.additional-block {
    flex: 1;
    min-width: 320px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

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

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

.thanks-section-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
}

.thanks-content-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 50px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

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

.thanks-content-asymmetric > p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.service-confirmation {
    margin: 30px 0;
    padding: 25px;
    background-color: #e8f8f5;
    border-radius: 6px;
}

.service-selected {
    font-size: 17px;
    color: #27ae60;
    margin: 0;
}

.thanks-next-steps {
    text-align: left;
    margin: 40px 0;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 6px;
}

.thanks-next-steps h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

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

.thanks-contact-reminder {
    margin: 30px 0;
}

.thanks-contact-reminder p {
    font-size: 15px;
    color: #7f8c8d;
}

.legal-content {
    max-width: 900px;
    margin: 80px auto 100px;
    padding: 0 30px;
}

.legal-content h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 18px;
}

.legal-content h4 {
    font-size: 22px;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.legal-content ul,
.legal-content ol {
    margin: 20px 0 25px 30px;
}

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

.legal-content a {
    color: #2980b9;
    text-decoration: none;
}

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

.legal-content em {
    color: #95a5a6;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-text-block {
        padding-left: 0;
    }

    .hero-text-block h2 {
        font-size: 36px;
    }

    .hero-image-offset {
        margin-top: 0;
    }

    .section-header-left {
        padding-left: 0;
    }

    .service-card {
        width: 100%;
    }

    .cta-content-offset {
        margin-left: 0;
        padding: 40px 30px;
    }

    .process-header-right {
        text-align: left;
        padding-right: 0;
    }

    .block-left,
    .block-right {
        margin-left: 0;
        margin-right: 0;
    }

    .form-container-offset {
        margin-left: 0;
        padding: 40px 30px;
    }

    .about-text-primary {
        padding-left: 0;
    }

    .about-text-primary h2 {
        font-size: 40px;
    }

    .value-block {
        width: 100%;
    }

    .experience-image-offset {
        margin-top: 0;
    }

    .cta-box-asymmetric {
        margin-right: 0;
    }

    .services-intro-block {
        padding-right: 0;
        text-align: left;
    }

    .services-intro-block h2 {
        font-size: 40px;
    }

    .cta-services-box {
        margin-left: 0;
        padding: 40px 30px;
    }

    .contact-intro {
        padding-left: 0;
    }

    .contact-intro h2 {
        font-size: 40px;
    }

    .contact-image-offset {
        margin-top: 0;
    }

    .main-nav {
        gap: 20px;
        flex-wrap: wrap;
    }
}