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

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.5;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
}

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

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

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

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
}

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

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

.hero-right {
    flex: 1;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52,152,219,0.3);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 80px;
    align-items: center;
}

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

.intro-image {
    flex: 1;
    background: #ecf0f1;
    border-radius: 12px;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.benefits-section {
    background: #f8f9fa;
    padding: 100px 40px;
}

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

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

.section-header-centered p {
    font-size: 19px;
    color: #666666;
}

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

.benefit-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 80px;
    align-items: center;
}

.process-content {
    flex: 1;
}

.process-content h2 {
    font-size: 40px;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    min-width: 60px;
}

.step h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step p {
    font-size: 17px;
    line-height: 1.7;
    color: #666666;
}

.process-image {
    flex: 1;
    background: #e8eef2;
    border-radius: 12px;
    overflow: hidden;
}

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

.services-overview {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.services-overview h2 {
    font-size: 44px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

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

.service-item-split {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 48px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-item-split:hover {
    border-color: #3498db;
    box-shadow: 0 8px 24px rgba(52,152,219,0.12);
}

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

.service-info {
    flex: 2;
}

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

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

.service-info ul {
    list-style: none;
    padding: 0;
}

.service-info li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #666666;
}

.service-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-pricing {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.testimonial-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.testimonial-content {
    flex: 1;
    padding: 60px;
}

.testimonial-content blockquote {
    border-left: 4px solid #3498db;
    padding-left: 32px;
}

.testimonial-content p {
    font-size: 22px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

.testimonial-image {
    flex: 1;
    background: #dfe6e9;
}

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

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

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 32px;
}

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

.form-benefit {
    font-size: 17px;
    color: #27ae60;
    font-weight: 600;
}

.contact-form {
    flex: 1;
    background: #f8f9fa;
    padding: 48px;
    border-radius: 12px;
}

.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: 14px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52,152,219,0.3);
}

.disclaimer-section {
    background: #fef9e7;
    padding: 48px 40px;
    margin: 80px auto;
    max-width: 1200px;
    border-left: 4px solid #f39c12;
}

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

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 32px;
}

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

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

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

.footer-column p {
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

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

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

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

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

.page-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #34495e;
}

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

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

.page-content li {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 12px;
}

.contact-info-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 12px;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    background: #f0f3f5;
    border-radius: 12px;
    overflow: hidden;
}

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

.values-section {
    background: #f8f9fa;
    padding: 80px 40px;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .process-split,
    .testimonial-split,
    .form-container-split,
    .about-split {
        flex-direction: column;
    }

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

    .header-container {
        flex-wrap: wrap;
    }

    .nav {
        flex-basis: 100%;
        justify-content: center;
    }

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

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 32px;
    }

    .section-header-centered h2 {
        font-size: 32px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}