* {
    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;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4a90e2;
}

.hero-fullwidth {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #2c3e50;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    max-width: 700px;
}

.intro-narrow {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.narrow-container {
    max-width: 700px;
    margin: 0 auto;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #495057;
}

.problem-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.content-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.text-block-left {
    flex: 1;
}

.text-block-left h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.text-block-left p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.image-block-right {
    flex: 1;
    background-color: #e9ecef;
}

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

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

.insight-section h2 {
    font-size: 38px;
    margin-bottom: 32px;
    text-align: center;
}

.insight-section p {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 24px;
}

.visual-break {
    width: 100%;
    background-color: #495057;
}

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

.solution-intro {
    padding: 100px 20px;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.solution-intro h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 60px;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    flex: 1 1 300px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.feature-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #6c757d;
}

.testimonial-section {
    padding: 100px 20px;
    background-color: #f1f3f5;
}

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

.testimonial p {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    color: #343a40;
    margin-bottom: 16px;
}

.testimonial cite {
    font-style: normal;
    color: #6c757d;
    font-size: 15px;
}

.product-showcase {
    padding: 100px 20px;
    background-color: #ffffff;
}

.showcase-header {
    text-align: center;
    margin-bottom: 70px;
}

.showcase-header h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.showcase-header p {
    font-size: 19px;
    color: #6c757d;
}

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

.product-card {
    flex: 1 1 calc(33.333% - 27px);
    background-color: #f8f9fa;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    background-color: #dee2e6;
}

.product-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px 24px;
    color: #2c3e50;
}

.product-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0 24px 16px 24px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #4a90e2;
    margin: 16px 24px;
}

.select-service-btn {
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    padding: 14px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #357abd;
}

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

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 19px;
}

.form-section {
    padding: 100px 20px;
    background-color: #f1f3f5;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 8px;
}

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

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px 20px;
}

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

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

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

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

.footer-column a {
    display: block;
    color: #adb5bd;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #343a40;
    font-size: 14px;
    color: #adb5bd;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #343a40;
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-btn.accept {
    background-color: #28a745;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #5a6268;
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

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

.header-content p {
    font-size: 20px;
    font-weight: 300;
}

.services-intro {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.services-detailed {
    padding: 40px 20px;
}

.service-item-full {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: #e9ecef;
}

.service-image-left img,
.service-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-text-right,
.service-text-left {
    flex: 1;
}

.service-text-right h2,
.service-text-left h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 20px;
}

.service-text-right p,
.service-text-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    font-size: 16px;
    color: #495057;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.service-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: 12px;
}

.service-cta:hover {
    background-color: #357abd;
}

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

.comparison-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
    color: #1a1a1a;
}

.comparison-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}

.about-story {
    padding: 80px 20px;
}

.story-block {
    max-width: 1100px;
    margin: 0 auto;
}

.story-block img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 40px;
    background-color: #dee2e6;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

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

.values-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.value-item {
    margin-bottom: 48px;
}

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

.value-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
}

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

.content-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.process-image {
    flex: 1;
    background-color: #e9ecef;
}

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

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

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.team-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

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

.commitment-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.commitment-item {
    flex: 1 1 300px;
}

.commitment-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.commitment-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
}

.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.contact-map {
    flex: 1;
    background-color: #e9ecef;
}

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

.contact-note {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.contact-note h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-note p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 12px;
}

.contact-note a {
    color: #4a90e2;
    text-decoration: none;
}

.contact-note a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 60vh;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px auto;
}

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

.thanks-message {
    font-size: 19px;
    color: #495057;
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 50px;
}

.selected-service {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
}

.selected-service h3 {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 12px;
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    color: #4a90e2;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.steps-list {
    padding-left: 24px;
}

.steps-list li {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #4a90e2;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

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

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-date {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #343a40;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}

.legal-container ul,
.legal-container ol {
    margin: 16px 0 16px 24px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 8px;
}

.legal-container a {
    color: #4a90e2;
    text-decoration: none;
}

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

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

    .hero-subtitle {
        font-size: 18px;
    }

    .content-grid-asymmetric,
    .content-grid-split,
    .service-item-full,
    .contact-grid,
    .cookie-content {
        flex-direction: column;
    }

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

    .product-card {
        flex: 1 1 100%;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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