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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

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

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
}

.hero-right {
    flex: 1;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #1a252f;
}

.cta-button.secondary {
    background-color: #3498db;
}

.cta-button.secondary:hover {
    background-color: #2980b9;
}

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

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

.intro-image {
    flex: 1;
    overflow: hidden;
}

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

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

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

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

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

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

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

.section-header p {
    font-size: 18px;
    color: #4a5568;
}

.services-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #1a252f;
}

.service-card p {
    font-size: 16px;
    margin: 0 24px 16px;
    color: #4a5568;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin: 16px 24px;
}

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

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

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    align-items: center;
    background-color: #f8f9fa;
}

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

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

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a5568;
}

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

.benefits-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: #2c3e50;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.trust-visual {
    flex: 1;
    overflow: hidden;
}

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

.cta-section {
    background-color: #2c3e50;
    padding: 80px 40px;
    text-align: center;
}

.cta-inner h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-inner p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

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

.form-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
}

.form-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

.form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

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

.submit-button {
    padding: 16px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #1a252f;
}

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 24px;
    background-color: #2c3e50;
    border-radius: 4px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    color: #ecf0f1;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.cookie-content p a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #6c7a7b;
}

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

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

.page-hero p {
    font-size: 20px;
    color: #4a5568;
}

.services-detailed {
    max-width: 1400px;
    margin: 80px auto;
}

.service-detail-item {
    display: flex;
    margin-bottom: 80px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a252f;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a5568;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-detail-content ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: #2c3e50;
}

.service-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 24px;
    line-height: 1;
}

.pricing-box {
    display: inline-flex;
    flex-direction: column;
    padding: 20px 32px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 4px;
}

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

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

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

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

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

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

.about-image {
    flex: 1;
    overflow: hidden;
}

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

.values-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.values-section h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a252f;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    align-items: center;
    background-color: #f8f9fa;
}

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

.process-image {
    flex: 1;
    overflow: hidden;
}

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

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

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

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

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

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
    padding: 0 40px;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

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

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

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-map-placeholder {
    flex: 1;
    overflow: hidden;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.additional-info {
    max-width: 1200px;
    margin: 60px auto 100px;
    padding: 0 40px;
}

.additional-info h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a252f;
}

.additional-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.additional-info a {
    color: #3498db;
    text-decoration: none;
}

.additional-info a:hover {
    text-decoration: underline;
}

.thanks-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
}

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

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

.email-text {
    color: #2c3e50;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a252f;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #4a5568;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .form-split,
    .about-split,
    .process-split,
    .contact-split,
    .service-detail-item {
        flex-direction: column;
    }

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

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

    .hero-left,
    .intro-content,
    .trust-content,
    .about-content,
    .process-content,
    .service-detail-content {
        padding: 40px 32px;
    }

    .form-container {
        padding: 32px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 16px 24px;
    }

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

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

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

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