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

.navigation {
    background-color: #0f1419;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    border: 1px solid #444;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0f1419;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    background-color: #2a4858;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1d4ed8;
}

.intro-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.intro-image {
    flex: 1;
    background-color: #e8eef3;
    position: relative;
}

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

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background-color: #ffffff;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0f1419;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.trust-section {
    background-color: #0f1419;
    color: #ffffff;
    padding: 6rem 2rem;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto 4rem;
    text-align: center;
}

.trust-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.trust-content p {
    font-size: 1.2rem;
    color: #d0d0d0;
    max-width: 900px;
    margin: 0 auto;
}

.trust-stats {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #b0b0b0;
}

.services-preview {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.services-preview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #0f1419;
    font-weight: 700;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 1.6rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #0f1419;
}

.service-card p {
    font-size: 1rem;
    color: #4a4a4a;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    margin: 0 1.5rem 1rem;
}

.service-link {
    color: #2563eb;
    text-decoration: none;
    margin: 0 1.5rem 1.5rem;
    font-weight: 500;
    transition: color 0.3s;
}

.service-link:hover {
    color: #1d4ed8;
}

.approach-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.approach-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background-color: #ffffff;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0f1419;
    font-weight: 700;
}

.approach-text p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.approach-visual {
    flex: 1;
    background-color: #e8eef3;
    position: relative;
}

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

.testimonial-section {
    background-color: #2563eb;
    padding: 6rem 2rem;
}

.testimonial {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial p {
    font-size: 1.6rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    font-size: 1.1rem;
    color: #d0e0ff;
    font-style: normal;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #0f1419;
}

.form-container p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0f1419;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.site-footer {
    background-color: #0f1419;
    color: #d0d0d0;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
}

.footer-bottom p {
    margin-bottom: 0.8rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #4a4a4a;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1d4ed8;
}

.btn-reject {
    background-color: #e0e0e0;
    color: #1a1a1a;
}

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

.cookie-actions a {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.cookie-actions a:hover {
    color: #1d4ed8;
}

.page-header {
    background-color: #f8f9fa;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #0f1419;
    max-width: 1000px;
    margin: 0 auto;
    font-weight: 700;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.2rem;
    color: #4a4a4a;
    max-width: 800px;
    margin: 1.5rem auto 0;
}

.about-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background-color: #ffffff;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0f1419;
    font-weight: 700;
}

.about-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background-color: #e8eef3;
    position: relative;
}

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

.values-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #0f1419;
    font-weight: 700;
}

.values-split {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #0f1419;
}

.value-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.team-approach {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.approach-image {
    flex: 1;
    background-color: #e8eef3;
    position: relative;
}

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

.timeline-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.timeline-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #0f1419;
    font-weight: 700;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    min-width: 100px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #0f1419;
}

.timeline-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.philosophy-section {
    padding: 6rem 2rem;
    background-color: #0f1419;
    color: #ffffff;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.philosophy-content p {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-detail-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
    margin-bottom: 4rem;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8eef3;
    position: relative;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background-color: #ffffff;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0f1419;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-features li {
    font-size: 1.05rem;
    color: #4a4a4a;
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-pricing {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f1419;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.95rem;
    color: #666;
}

.integration-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.integration-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #0f1419;
    font-weight: 700;
}

.integration-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f1419;
}

.step-card p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-section {
    padding: 6rem 2rem;
    background-color: #2563eb;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-content p {
    font-size: 1.2rem;
    color: #d0e0ff;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #ffffff;
    color: #2563eb;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

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

.contact-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
    margin-bottom: 4rem;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background-color: #f8f9fa;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0f1419;
    font-weight: 700;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #2563eb;
    font-weight: 600;
}

.info-block p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    background-color: #e8eef3;
    position: relative;
}

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

.contact-details-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.details-content {
    max-width: 900px;
    margin: 0 auto;
}

.details-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0f1419;
    font-weight: 700;
}

.details-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.location-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.location-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #0f1419;
    font-weight: 700;
}

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

.location-content {
    flex: 1;
    min-width: 300px;
}

.location-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.location-image {
    flex: 1;
    min-width: 300px;
}

.location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e0e0e0;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 3rem;
    color: #0f1419;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-content > p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.thanks-details {
    margin-bottom: 3rem;
}

.service-confirmation {
    font-size: 1.1rem;
    color: #2563eb;
    padding: 1.5rem;
    background-color: #f0f7ff;
    border-radius: 8px;
}

.next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2.2rem;
    color: #0f1419;
    margin-bottom: 2rem;
    font-weight: 700;
}

.step-item {
    margin-bottom: 2rem;
}

.step-item h3 {
    font-size: 1.4rem;
    color: #2563eb;
    margin-bottom: 0.7rem;
}

.step-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #1a1a1a;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.legal-page h1 {
    font-size: 3rem;
    color: #0f1419;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-intro {
    font-size: 1rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #0f1419;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.4rem;
    color: #2563eb;
    margin-top: 2rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.legal-page p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-list {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.legal-list li {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.8;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .approach-split,
    .about-split,
    .team-approach,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-content,
    .approach-text,
    .about-content,
    .approach-content,
    .service-detail-content,
    .contact-info {
        padding: 3rem 2rem;
    }

    .hero-left h1,
    .page-header h1,
    .thanks-content h1 {
        font-size: 2.2rem;
    }

    .services-grid,
    .integration-steps {
        flex-direction: column;
    }

    .service-card,
    .step-card {
        min-width: 100%;
    }

    .nav-links {
        gap: 1rem;
    }
}