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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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;
}

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
}

.nav-ad-label {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
    min-width: 400px;
}

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

.hero-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #546e7a;
}

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

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

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

.btn-hero:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.intro-section {
    background-color: #ecf0f1;
    padding: 80px 30px;
}

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

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

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

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

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

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

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

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    min-width: 400px;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.service-info {
    flex: 1;
    min-width: 400px;
}

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

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

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

.btn-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.process-section {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 100px 30px;
}

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

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #bdc3c7;
}

.trust-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

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

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

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

.cta-section {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    padding: 100px 30px;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    background-color: #ffffff;
    color: #3498db;
    padding: 18px 42px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #3498db;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #34495e;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #7f8c8d;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #2c3e50;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.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 #dce4ec;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: #2980b9;
}

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

.btn-primary:hover {
    background-color: #229954;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 12px 24px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

.contact-split {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #3498db;
}

.info-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #546e7a;
}

.page-hero {
    background-color: #ecf0f1;
    padding: 80px 30px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-hero p {
    font-size: 20px;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

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

.content-section ul {
    margin: 16px 0 16px 24px;
}

.content-section ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #546e7a;
}

.about-intro {
    background-color: #f8f9fa;
    padding: 80px 30px;
}

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

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

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

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

.values-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #3498db;
}

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

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

.service-item {
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 24px;
}

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

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

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 20px;
}

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

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

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .service-image,
    .service-info,
    .hero-left {
        min-width: 100%;
    }

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