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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

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

.cookie-banner.active {
    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;
}

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

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

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

.btn-accept {
    background: #27AE60;
    color: #FFFFFF;
}

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

.btn-reject {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

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

.main-header {
    background: #FFFFFF;
    padding: 20px 0;
    border-bottom: 1px solid #ECF0F1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
}

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

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

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

.ad-notice {
    background: #E74C3C;
    color: #FFFFFF;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background: #ECF0F1;
}

.hero-text-content {
    max-width: 550px;
}

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

.hero-text-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #34495E;
}

.cta-primary {
    display: inline-block;
    background: #3498DB;
    color: #FFFFFF;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #2980B9;
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-section {
    padding: 100px 0;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content-left {
    flex: 1;
    padding: 0 60px;
}

.split-content-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2C3E50;
}

.split-content-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.split-image-right {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.split-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-preview {
    padding: 100px 0;
    background: #F8F9FA;
}

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

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.section-header-center p {
    font-size: 18px;
    color: #555;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2C3E50;
}

.service-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

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

.btn-select {
    width: 100%;
    background: #3498DB;
    color: #FFFFFF;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #2980B9;
}

.form-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.form-wrapper {
    background: #F8F9FA;
    padding: 50px;
    border-radius: 8px;
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2C3E50;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
    font-size: 17px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #BDC3C7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background: #ECF0F1;
    cursor: not-allowed;
}

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

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

.approach-split {
    padding: 100px 0;
    background: #ECF0F1;
}

.split-layout-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-image-left {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.split-image-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.split-content-right {
    flex: 1;
    padding: 0 60px;
}

.split-content-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2C3E50;
}

.split-content-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.link-inline {
    color: #3498DB;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #2980B9;
    text-decoration: underline;
}

.disclaimer-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.disclaimer-box {
    background: #FFF3CD;
    border-left: 4px solid #F39C12;
    padding: 30px;
    border-radius: 4px;
}

.disclaimer-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #856404;
}

.disclaimer-box p {
    color: #856404;
    line-height: 1.8;
}

.main-footer {
    background: #2C3E50;
    color: #FFFFFF;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.footer-col p {
    color: #BDC3C7;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #BDC3C7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498DB;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495E;
    color: #BDC3C7;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-box {
    text-align: center;
    max-width: 600px;
    padding: 60px 40px;
    background: #F8F9FA;
    border-radius: 8px;
}

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

.thanks-box p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.thanks-box .service-detail {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
    border-left: 4px solid #3498DB;
}

.thanks-box .service-detail strong {
    color: #2C3E50;
}

.page-header {
    background: #ECF0F1;
    padding: 80px 0;
    text-align: center;
}

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

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

.content-section {
    padding: 80px 0;
}

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

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

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

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

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

.about-split {
    padding: 100px 0;
}

.contact-info-box {
    background: #F8F9FA;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-info-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.contact-info-box p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
}

.contact-info-box strong {
    color: #2C3E50;
}

@media (max-width: 968px) {
    .hero-split,
    .split-layout,
    .split-layout-reverse {
        flex-direction: column;
    }

    .hero-left,
    .split-content-left,
    .split-content-right {
        padding: 40px 30px;
    }

    .hero-right,
    .split-image-right,
    .split-image-left {
        height: 400px;
    }

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

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

@media (max-width: 600px) {
    .service-card {
        width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 15px;
    }

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