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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    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-content a {
    color: #f39c12;
    text-decoration: none;
}

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

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

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

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

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

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

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

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

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    background: #ddd;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: white;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-right-img {
    flex: 1;
    background: #e0e0e0;
}

.intro-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-left-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.intro-left-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.services-section {
    padding: 80px 0;
    background: #f5f5f5;
}

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

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

.services-header p {
    font-size: 18px;
    color: #666;
}

.service-split {
    display: flex;
    margin-bottom: 0;
    background: white;
}

.service-split.reverse {
    flex-direction: row-reverse;
}

.service-left,
.service-right {
    flex: 1;
}

.service-left {
    background: #ddd;
}

.service-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.service-right {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-right h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-right p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #555;
}

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

.btn-select-service {
    padding: 14px 28px;
    background: #667eea;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.service-split.reverse .service-left {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.service-split.reverse .service-right {
    background: #ddd;
    padding: 0;
}

.service-split.reverse .service-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

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

.form-left {
    flex: 1;
    padding: 80px 60px;
    background: #34495e;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.form-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.form-notice {
    font-weight: 600;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-top: 20px;
}

#selected-service-display {
    color: #f39c12;
}

.form-right {
    flex: 1;
    padding: 80px 60px;
    background: white;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background: #667eea;
    color: white;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.trust-split {
    display: flex;
    min-height: 500px;
    background: white;
}

.trust-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.trust-right {
    flex: 1;
    background: #e0e0e0;
}

.trust-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-split {
    display: flex;
    padding: 60px 5%;
    background: #2c3e50;
    color: white;
}

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

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.footer-right {
    flex: 1;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f39c12;
}

.footer-disclaimer {
    font-size: 12px;
    opacity: 0.7;
    line-height: 1.6;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.page-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-header {
    margin-bottom: 40px;
}

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

.page-content {
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.page-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin: 32px 0 16px;
}

.page-content h3 {
    font-size: 22px;
    color: #34495e;
    margin: 24px 0 12px;
}

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

.page-content ul,
.page-content ol {
    margin: 16px 0 16px 24px;
}

.page-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.contact-page-split {
    display: flex;
    min-height: 500px;
    margin: 60px 0;
}

.contact-info-left {
    flex: 1;
    padding: 60px;
    background: #34495e;
    color: white;
}

.contact-info-left h1 {
    font-size: 42px;
    margin-bottom: 32px;
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    opacity: 0.8;
}

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

.contact-map-right {
    flex: 1;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

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

.thanks-content {
    text-align: center;
    max-width: 600px;
}

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

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.thanks-content .btn-primary {
    margin-top: 32px;
}

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 15px;
    }

    .hero-split,
    .intro-split,
    .service-split,
    .service-split.reverse,
    .form-section-split,
    .trust-split,
    .footer-split,
    .contact-page-split {
        flex-direction: column;
    }

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

    .service-right,
    .service-split.reverse .service-left {
        padding: 40px 30px;
    }

    .page-content {
        padding: 30px 20px;
    }
}