* {
    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;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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;
    margin: 0;
    min-width: 300px;
}

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

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

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

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

.btn-reject {
    background: transparent;
    color: white;
    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 #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 600;
    color: #27ae60;
}

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

.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: #27ae60;
}

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    border: 1px solid #e0e0e0;
    padding: 4px 12px;
    border-radius: 4px;
    background: #f8f9fa;
}

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

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

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

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39,174,96,0.3);
}

.hero-right {
    background: #e8f5e9;
    position: relative;
    overflow: hidden;
}

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

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

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

.intro-image, .intro-text {
    flex: 1;
}

.intro-image {
    background: #dcedc8;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

.service-card-split {
    display: flex;
    margin-bottom: 60px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card-split:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

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

.service-info, .service-visual {
    flex: 1;
}

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

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

.service-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 28px;
    line-height: 1.8;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

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

.btn-select {
    padding: 12px 28px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.service-visual {
    background: #c8e6c9;
    position: relative;
    overflow: hidden;
}

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

.trust-split {
    display: flex;
    background: #f8f9fa;
}

.trust-content {
    flex: 1.2;
    padding: 80px 60px;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #27ae60;
}

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

.trust-visual {
    flex: 1;
    background: #dcedc8;
    position: relative;
    overflow: hidden;
}

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

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

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonial-split {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    padding: 40px;
    background: #f8f9fa;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
}

.testimonial-card p {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

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

.form-split {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    padding: 16px 20px;
    background: #f8f9fa;
    border-left: 3px solid #27ae60;
    font-size: 15px;
    color: #2c3e50;
}

.form-container {
    flex: 1;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: white;
}

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

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

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

.disclaimer-section {
    padding: 60px 60px;
    background: #fff8e1;
    border-top: 2px solid #ffd54f;
    border-bottom: 2px solid #ffd54f;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #f57c00;
}

.disclaimer-content p {
    font-size: 15px;
    color: #5d4037;
    line-height: 1.8;
}

.footer-split {
    background: #2c3e50;
    color: #ffffff;
}

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

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

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

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 2;
}

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

.footer-column a:hover {
    color: #27ae60;
}

.footer-bottom {
    text-align: center;
    padding: 20px 60px;
    border-top: 1px solid #34495e;
}

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

.page-header {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 80px 60px;
    text-align: center;
    color: white;
}

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

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

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

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

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

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

.page-content ul, .page-content ol {
    margin: 20px 0 20px 30px;
    color: #555;
    line-height: 1.8;
}

.page-content li {
    margin-bottom: 10px;
}

.contact-info-section {
    display: flex;
    gap: 60px;
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c3e50;
}

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

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

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

.contact-map {
    flex: 1;
    background: #e8f5e9;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
}

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

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

.thanks-icon {
    font-size: 72px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-message h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.btn-home {
    display: inline-block;
    padding: 16px 36px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

@media (max-width: 1024px) {
    .hero-split, .intro-split, .trust-split,
    .service-card-split, .form-split,
    .testimonial-split, .footer-main,
    .contact-info-section {
        flex-direction: column;
    }

    .header-split {
        padding: 20px 30px;
    }

    .services-section, .page-content {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .header-right {
        gap: 20px;
    }

    .main-nav {
        gap: 15px;
    }

    .main-nav a {
        font-size: 14px;
    }
}