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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.ad-disclosure {
    background: #f4f4f4;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-right a:hover {
    color: #e74c3c;
}

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

.hero-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

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

.hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #c0392b;
}

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

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

.intro-section {
    padding: 100px 60px;
    background: #ffffff;
}

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

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

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

.services-preview {
    padding: 80px 40px;
    background: #f8f9fa;
}

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

.section-header h2 {
    font-size: 40px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(50% - 16px);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    transition: transform 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card img {
    width: 280px;
    height: 100%;
    object-fit: cover;
    background: #e0e0e0;
}

.service-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

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

.service-info p {
    color: #666;
    margin-bottom: 16px;
    flex: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 16px;
    display: block;
}

.select-service {
    padding: 12px 24px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #1a252f;
}

.form-section {
    padding: 100px 40px;
    background: #ffffff;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.form-visual {
    flex: 1;
}

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

.form-visual p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.form-visual img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background: #e0e0e0;
}

.form-wrapper {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.service-display {
    background: #e74c3c;
    color: #ffffff;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-weight: 600;
}

.service-display.empty {
    background: #95a5a6;
}

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

.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 #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.submit-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.trust-section {
    padding: 80px 60px;
    background: #2c3e50;
    color: #ffffff;
}

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

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 16px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept {
    background: #e74c3c;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #c0392b;
}

.cookie-reject {
    background: #95a5a6;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #7f8c8d;
}

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

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

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

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

.thanks-service {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.thanks-service strong {
    color: #e74c3c;
    font-size: 20px;
}

.btn-home {
    display: inline-block;
    padding: 14px 32px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #1a252f;
}

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

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

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

.page-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.page-content ul,
.page-content ol {
    margin-bottom: 16px;
    padding-left: 32px;
}

.page-content li {
    margin-bottom: 8px;
    color: #555;
}

.contact-info {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 12px;
}

.contact-detail {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-detail strong {
    min-width: 140px;
    color: #2c3e50;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background: #e0e0e0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-detail {
    display: flex;
    gap: 40px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-detail img {
    width: 320px;
    height: 240px;
    object-fit: cover;
    background: #e0e0e0;
}

.service-detail-content {
    padding: 32px;
    flex: 1;
}

.service-detail-content h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.service-detail-content .price {
    font-size: 32px;
    color: #e74c3c;
    font-weight: 700;
    display: block;
    margin: 16px 0;
}

@media (max-width: 768px) {
    .hero-split,
    .form-container,
    .about-split,
    .service-detail {
        flex-direction: column;
    }

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

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

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

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

    .nav-right {
        gap: 16px;
    }

    .hero-text {
        padding: 40px 20px;
    }

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