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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    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: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    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);
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left {
    flex: 1;
}

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

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    background: #ecf0f1;
}

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

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

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

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

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

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555555;
    max-width: 560px;
}

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

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

.hero-image-right {
    flex: 1;
    background: #34495e;
}

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

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

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

.value-image-left {
    flex: 1;
    background: #bdc3c7;
}

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

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

.value-content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.value-content-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555555;
    line-height: 1.7;
}

.services-overview {
    padding: 100px 60px;
    background: #ffffff;
}

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

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    border-bottom: 1px solid #ecf0f1;
}

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

.service-card-image {
    flex: 1;
    background: #95a5a6;
    min-height: 400px;
}

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

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

.service-card-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card-content p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #555555;
    line-height: 1.7;
}

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

.service-select-btn {
    padding: 12px 28px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

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

.form-content-left {
    flex: 1;
    padding: 80px 60px;
    background: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-content-left p {
    font-size: 17px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.form-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

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

.main-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-form input,
.main-form textarea {
    padding: 14px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.main-form input[readonly] {
    background: #ecf0f1;
    color: #7f8c8d;
}

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

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

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

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

.trust-content-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.trust-stats-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    background: #2c3e50;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #ecf0f1;
}

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

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

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

.footer-column p {
    color: #bdc3c7;
    font-size: 14px;
}

.footer-disclaimer {
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #7f8c8d;
    font-size: 14px;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

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

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

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

.thanks-content a:hover {
    background: #1a252f;
}

.page-header {
    padding: 100px 60px 60px 60px;
    background: #f8f9fa;
    text-align: center;
}

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

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

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

.content-section h2 {
    font-size: 32px;
    margin: 40px 0 20px 0;
    color: #1a1a1a;
}

.content-section h3 {
    font-size: 24px;
    margin: 30px 0 16px 0;
    color: #2c3e50;
}

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

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

.content-section li {
    margin-bottom: 10px;
    color: #555555;
    line-height: 1.7;
}

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

.contact-info-left {
    flex: 1;
    padding: 80px 60px;
    background: #2c3e50;
    color: #ffffff;
}

.contact-info-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #27ae60;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-map-right {
    flex: 1;
    background: #95a5a6;
}

.services-page-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 80px 60px;
}

.service-page-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 400px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #ecf0f1;
}

.service-page-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-page-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555555;
    line-height: 1.7;
}

.service-page-card .service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.about-page-split {
    display: flex;
}

.about-content-left {
    flex: 1;
    padding: 80px 60px;
}

.about-content-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-content-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555555;
    line-height: 1.7;
}

.about-image-right {
    flex: 1;
    background: #95a5a6;
    min-height: 500px;
}

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

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

    .hero-split,
    .value-split,
    .service-card-split,
    .contact-form-split,
    .trust-split,
    .contact-page-split,
    .about-page-split {
        flex-direction: column;
    }

    .service-card-split.reverse {
        flex-direction: column;
    }

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