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

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

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

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

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

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

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-reject {
    background: #666;
    color: white;
}

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.main-nav a:hover {
    color: #1976d2;
}

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

.hero-section {
    margin-bottom: 80px;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    background-color: #263238;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.7), rgba(13, 71, 161, 0.7));
}

.hero-overlay h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 700px;
}

.hero-overlay p {
    font-size: 22px;
    color: #e3f2fd;
    max-width: 600px;
}

.intro-section {
    padding: 80px 0;
    background: #fafafa;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a237e;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #455a64;
}

.services-preview {
    padding: 100px 0;
    background: #ffffff;
}

.service-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    height: 240px;
    background-color: #eceff1;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 24px;
    color: #1976d2;
}

.service-card p {
    padding: 0 24px 20px;
    color: #546e7a;
    font-size: 16px;
}

.price-tag {
    display: block;
    padding: 0 24px 24px;
    font-size: 28px;
    font-weight: 700;
    color: #2e7d32;
}

.problem-section {
    padding: 100px 0;
    background: #e3f2fd;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #0d47a1;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #37474f;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #455a64;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-size: 24px;
    font-weight: 700;
}

.split-image {
    flex: 1;
    background-color: #cfd8dc;
}

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

.solution-section {
    padding: 100px 0;
    background: #ffffff;
}

.solution-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a237e;
}

.process-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.process-block {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    background: #f5f5f5;
    border-left: 4px solid #1976d2;
}

.process-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 20px;
}

.process-block h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a237e;
}

.process-block p {
    color: #546e7a;
    font-size: 16px;
}

.testimonials-section {
    padding: 100px 0;
    background: #fafafa;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a237e;
}

.testimonial-block {
    background: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 5px solid #1976d2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-block p {
    font-size: 18px;
    font-style: italic;
    color: #37474f;
    margin-bottom: 20px;
}

.testimonial-author {
    display: block;
    font-size: 16px;
    color: #78909c;
    font-weight: 500;
}

.pricing-section {
    padding: 100px 0;
    background: #ffffff;
}

.pricing-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a237e;
}

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

.pricing-item {
    flex: 1;
    min-width: 320px;
    background: #fafafa;
    padding: 40px 30px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    border-color: #1976d2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pricing-item.featured {
    background: #e3f2fd;
    border-color: #1976d2;
}

.pricing-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a237e;
}

.pricing-item p {
    font-size: 15px;
    color: #546e7a;
    margin-bottom: 24px;
    min-height: 48px;
}

.pricing-item .price {
    font-size: 36px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 24px;
}

.pricing-item ul {
    list-style: none;
}

.pricing-item ul li {
    padding: 10px 0 10px 24px;
    position: relative;
    font-size: 15px;
    color: #455a64;
}

.pricing-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: 700;
}

.cta-form-section {
    padding: 100px 0;
    background: #1a237e;
    color: #ffffff;
}

.cta-form-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #e3f2fd;
}

.consultation-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    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: #1976d2;
}

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

.btn-submit:hover {
    background: #1565c0;
}

.main-footer {
    background: #263238;
    color: #eceff1;
    padding: 60px 0 20px;
}

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

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

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

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

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

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

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

.footer-col ul li a:hover {
    color: #64b5f6;
}

.footer-disclaimer {
    background: #1c2428;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #90a4ae;
    line-height: 1.6;
}

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

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

.contact-page {
    padding: 80px 0;
}

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

.contact-info {
    background: #fafafa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1976d2;
}

.contact-item p {
    font-size: 17px;
    color: #455a64;
}

.services-page {
    padding: 80px 0;
}

.services-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a237e;
    text-align: center;
}

.service-detail {
    background: #ffffff;
    padding: 50px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-detail h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1976d2;
}

.service-detail .price-display {
    font-size: 32px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 24px;
}

.service-detail p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
}

.service-detail ul {
    list-style: none;
    margin: 20px 0;
}

.service-detail ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #455a64;
}

.service-detail ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1976d2;
    font-weight: 700;
}

.about-page {
    padding: 80px 0;
}

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

.about-content {
    font-size: 18px;
    line-height: 1.8;
    color: #455a64;
}

.about-content p {
    margin-bottom: 24px;
}

.about-image {
    margin: 40px 0;
    background-color: #eceff1;
    border-radius: 8px;
    overflow: hidden;
}

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

.legal-page {
    padding: 80px 0;
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1976d2;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #0277bd;
}

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

.legal-page ul {
    margin: 20px 0 20px 30px;
    color: #455a64;
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.thanks-page {
    padding: 100px 0;
    text-align: center;
}

.thanks-container {
    background: #e3f2fd;
    padding: 80px 40px;
    border-radius: 8px;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1976d2;
}

.thanks-container p {
    font-size: 18px;
    color: #455a64;
    margin-bottom: 20px;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #1976d2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-container .btn-home:hover {
    background: #1565c0;
}

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

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

    .service-cards {
        flex-direction: column;
    }

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

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

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

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}