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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    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: #2d3748;
}

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

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

.main-nav a:hover {
    color: #2b6cb0;
}

.ad-label {
    font-size: 12px;
    color: #718096;
    background-color: #edf2f7;
    padding: 6px 12px;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

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

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

.hero-left p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 540px;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #2c5282;
}

.cta-secondary {
    display: inline-block;
    background-color: #e2e8f0;
    color: #2d3748;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #cbd5e0;
}

.value-split {
    display: flex;
    margin: 80px 0;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.split-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a202c;
}

.split-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
}

.split-content ul {
    margin-left: 20px;
    margin-top: 16px;
}

.split-content li {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 12px;
}

.services-grid {
    background-color: #f7fafc;
    padding: 80px 0;
}

.services-grid h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 22px);
    min-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    padding: 24px 24px 16px;
    color: #1a202c;
}

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

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #2b6cb0;
    padding: 0 24px 20px;
}

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

.btn-select-service:hover {
    background-color: #2c5282;
}

.approach-split {
    display: flex;
    margin: 80px 0;
}

.approach-list {
    list-style: none;
    margin-top: 24px;
}

.approach-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 18px;
    color: #4a5568;
}

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

.form-section {
    background-color: #edf2f7;
    padding: 80px 0;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.form-intro p {
    font-size: 18px;
    color: #4a5568;
}

.contact-form {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

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

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

.trust-split {
    display: flex;
    margin: 80px 0;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.tech-tag {
    background-color: #edf2f7;
    color: #2d3748;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.main-footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 60px 0 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-column a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #cbd5e0;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px;
    color: #a0aec0;
    max-width: 800px;
    margin: 16px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #38a169;
}

.btn-reject {
    background-color: #718096;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #4a5568;
}

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

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

.page-hero p {
    font-size: 20px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    margin: 80px 0;
}

.team-values {
    background-color: #f7fafc;
    padding: 80px 0;
}

.team-values h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.value-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

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

.expertise-split {
    display: flex;
    margin: 80px 0;
}

.cta-section {
    background-color: #edf2f7;
    padding: 80px 0;
}

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

.cta-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.cta-box p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.services-detail {
    padding: 60px 0;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a202c;
}

.service-detail-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    max-width: 500px;
}

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

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2b6cb0;
    margin: 24px 0;
}

.contact-section {
    padding: 60px 0;
}

.contact-layout {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2d3748;
}

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

.thanks-section {
    padding: 120px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1a202c;
}

.thanks-content p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a202c;
}

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

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2d3748;
}

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

.legal-page ul {
    margin-left: 32px;
    margin-bottom: 16px;
}

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

.legal-page a {
    color: #2b6cb0;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.cookies-table th {
    background-color: #edf2f7;
    font-weight: 700;
    color: #2d3748;
}

.cookies-table td {
    color: #4a5568;
}

@media (max-width: 968px) {
    .hero-split,
    .value-split,
    .approach-split,
    .trust-split,
    .about-split,
    .expertise-split {
        flex-direction: column;
    }

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

    .hero-left,
    .split-content {
        padding: 40px 30px;
    }

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

    .service-card {
        width: 100%;
    }

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

    .header-content {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }

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

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

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