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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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;
    margin: 0;
}

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

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

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

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

.btn-reject {
    background: #555555;
    color: #ffffff;
}

.btn-reject:hover {
    background: #666666;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

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

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

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

.ad-label {
    padding: 6px 12px;
    background: #f1f1f1;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
}

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

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

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

.hero-text-wrapper {
    max-width: 500px;
}

.hero-text-wrapper h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

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

.cta-primary:hover {
    background: #2980b9;
}

.hero-right {
    background: #ddd;
}

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

.intro-section {
    padding: 80px 20px;
    background: #ffffff;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    color: #555;
    text-align: center;
}

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

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-content,
.split-image {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.service-item {
    margin-bottom: 30px;
}

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

.service-item p {
    font-size: 16px;
    color: #666;
}

.link-secondary {
    display: inline-block;
    margin-top: 20px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-secondary:hover {
    color: #2980b9;
}

.split-image {
    background: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

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

.process-section {
    padding: 80px 20px;
    background: #ffffff;
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.process-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.process-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 15px;
    color: #666;
}

.testimonials-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.testimonial {
    margin-bottom: 40px;
    padding: 30px;
    background: #ffffff;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 15px;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    color: #888;
}

.form-section {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

.why-us-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.why-us-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.why-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.why-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.why-card p {
    font-size: 16px;
    color: #666;
}

.disclaimer-section {
    padding: 60px 20px;
    background: #f1f1f1;
}

.disclaimer {
    font-size: 14px;
    color: #777;
    text-align: center;
    line-height: 1.8;
}

.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.services-list {
    padding: 80px 20px;
    background: #ffffff;
}

.service-full {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-full:nth-child(even) {
    flex-direction: row-reverse;
}

.service-full-image {
    flex: 1;
    background: #ddd;
    border-radius: 8px;
    overflow: hidden;
    min-height: 350px;
}

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

.service-full-content {
    flex: 1;
}

.service-full-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

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

.service-full-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

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

.about-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-content {
    padding: 80px 20px;
    background: #ffffff;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
    background: #ddd;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

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

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-content {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 30px;
}

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

.info-item p {
    font-size: 16px;
    color: #666;
}

.legal-page {
    padding: 80px 20px;
    background: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
}

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

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-right {
        min-height: 300px;
    }

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

    .process-grid {
        flex-direction: column;
    }

    .service-full,
    .service-full:nth-child(even) {
        flex-direction: column;
    }

    .about-split {
        flex-direction: column;
    }

    .nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}