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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 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: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    background-color: #3498db;
    color: #ffffff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

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

.btn-cookie.btn-secondary {
    background-color: transparent;
    border: 1px solid #ffffff;
}

.btn-cookie.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

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

.hero-visual {
    width: 100%;
    margin-bottom: 4rem;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #34495e;
    overflow: hidden;
}

.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(135deg, rgba(44, 62, 80, 0.85), rgba(52, 152, 219, 0.65));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 5rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    max-width: 800px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-overlay p {
    font-size: 1.5rem;
    color: #ecf0f1;
    max-width: 600px;
}

.intro-asymmetric {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

.intro-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.intro-visual {
    flex: 1;
    background-color: #bdc3c7;
}

.intro-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.problem-section {
    padding: 5rem 3rem;
    background-color: #ffffff;
}

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

.problem-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-card {
    padding: 2rem;
    background-color: #ecf0f1;
    border-left: 4px solid #e74c3c;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.problem-card p {
    font-size: 1.0625rem;
    color: #34495e;
    line-height: 1.7;
}

.solution-visual {
    padding: 5rem 3rem;
    background-color: #2c3e50;
}

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

.split-content {
    flex: 1;
    color: #ffffff;
}

.split-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.split-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.split-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.split-content li {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.services-intro {
    padding: 5rem 3rem;
    background-color: #ffffff;
}

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

.services-intro h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

.services-lead {
    font-size: 1.25rem;
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 1.5rem);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #ecf0f1;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 220px;
    background-color: #bdc3c7;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.service-card p {
    font-size: 1rem;
    margin: 0 1.5rem 1.5rem;
    color: #34495e;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 1.5rem 1rem;
}

.btn-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.875rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

.trust-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial {
    background-color: #ffffff;
    padding: 2.5rem;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-size: 1.125rem;
    font-style: italic;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: #7f8c8d;
}

.cta-section {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    background-color: #ffffff;
    color: #3498db;
}

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

.form-section {
    padding: 5rem 3rem;
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

.form-intro {
    font-size: 1.125rem;
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.inquiry-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
}

.disclaimer-section {
    padding: 3rem 3rem;
    background-color: #ecf0f1;
}

.disclaimer {
    font-size: 0.875rem;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 3rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-overlay {
        padding: 0 2rem;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1.125rem;
    }

    .intro-offset,
    .split-container {
        flex-direction: column;
    }

    .service-card {
        flex: 0 1 100%;
    }

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