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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    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: 1px solid #ffffff;
}

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

.header-asymmetric {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-block {
    flex: 0 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

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

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

.ad-disclosure {
    background-color: #f39c12;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

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

.hero-content-left {
    flex: 1;
    padding-right: 40px;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-intro {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

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

.cta-hero:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.hero-image-right {
    flex: 1;
    position: relative;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.trust-block-diagonal {
    background-color: #ecf0f1;
    padding: 120px 30px;
    margin-top: 100px;
    position: relative;
}

.trust-block-diagonal::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #ecf0f1;
    transform: skewY(-2deg);
}

.trust-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 1.2;
}

.trust-text h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.trust-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.trust-visual {
    flex: 0.8;
    background-color: #d5dbdb;
}

.trust-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

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

.section-title-left {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
    max-width: 600px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.service-card.card-1,
.service-card.card-4 {
    flex: 1 1 calc(50% - 20px);
}

.service-card.card-2,
.service-card.card-3,
.service-card.card-5 {
    flex: 1 1 calc(33.333% - 27px);
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #bdc3c7;
}

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

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 25px 20px;
    flex-grow: 1;
}

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

.service-link {
    display: block;
    padding: 14px 25px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.form-section-overlap {
    position: relative;
    margin: 120px auto;
    max-width: 1400px;
    padding: 0 30px;
}

.form-visual-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #95a5a6;
}

.form-visual-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.form-container {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    max-width: 700px;
}

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

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    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: #3498db;
}

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

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.value-proposition-stacked {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.value-item {
    padding-left: 40px;
    border-left: 4px solid #3498db;
}

.value-item:nth-child(2) {
    margin-left: 120px;
    border-left-color: #27ae60;
}

.value-item:nth-child(3) {
    margin-left: 60px;
    border-left-color: #f39c12;
}

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

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

.disclaimer-section {
    max-width: 1200px;
    margin: 80px auto 60px;
    padding: 40px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.disclaimer-text {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
}

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(236, 240, 241, 0.2);
    text-align: center;
}

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

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

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

    .trust-inner {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .form-visual-bg {
        display: none;
    }

    .form-container {
        max-width: 100%;
    }

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

@media (max-width: 768px) {
    .nav-wrapper {
        flex-wrap: wrap;
        gap: 20px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

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

    .section-title-left {
        font-size: 32px;
    }

    .value-item,
    .value-item:nth-child(2),
    .value-item:nth-child(3) {
        margin-left: 0;
    }
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 30px;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    color: #ecf0f1;
}

.content-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
}

.content-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 24px;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-section ul,
.content-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
}

.service-detail-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.service-detail-item:nth-child(even) {
    flex-direction: row-reverse;
}

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

.service-detail-image {
    flex: 0 0 400px;
    background-color: #ecf0f1;
}

.service-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
}

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

.service-detail-content .price-tag {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.contact-info-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 30px;
}

.contact-block {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

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

.contact-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

.about-intro p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.about-values {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.about-value-card {
    flex: 1 1 calc(33.333% - 27px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.about-value-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

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

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

.legal-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.thanks-container p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.thanks-container .back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container .back-link:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}