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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #666;
    border: 1px solid #ddd;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1;
    min-width: 350px;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    min-width: 350px;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.feature-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.feature-split.reverse {
    flex-direction: row-reverse;
}

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

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f0f0f0;
    object-fit: cover;
}

.feature-content {
    flex: 1;
    min-width: 350px;
}

.feature-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.feature-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
}

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

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

.services-text h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.services-text p {
    font-size: 1.1rem;
    color: #666;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #0066cc;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border: 2px solid #0066cc;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #0066cc;
    color: #ffffff;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

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

.service-info {
    padding: 1.8rem;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.2rem;
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066cc;
}

.expertise-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    flex-wrap: wrap;
}

.expertise-left {
    flex: 1;
    min-width: 350px;
}

.expertise-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.9rem 0 0.9rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
    border-bottom: 1px solid #e5e5e5;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 1.3rem;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #0066cc;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 2px solid #0066cc;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: #0066cc;
    color: #ffffff;
}

.expertise-right {
    flex: 1;
    min-width: 300px;
}

.expertise-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f0f0f0;
    object-fit: cover;
}

.cta-split {
    background-color: #f0f6ff;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.cta-split > div {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.cta-content-left {
    flex: 1;
    min-width: 350px;
}

.cta-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-content-left p {
    font-size: 1.1rem;
    color: #555;
}

.cta-form-right {
    flex: 1;
    min-width: 350px;
}

.inline-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.inline-form input,
.inline-form select,
.inline-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.inline-form input:focus,
.inline-form select:focus,
.inline-form textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    width: 100%;
    background-color: #0066cc;
    color: #ffffff;
    padding: 1.1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

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

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

.footer-col p {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.8;
}

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

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

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

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

.email-display {
    color: #bbb;
    font-style: normal;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

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

.cookie-banner.show {
    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;
    min-width: 300px;
    font-size: 0.95rem;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #0052a3;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.page-header-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.header-content {
    flex: 1;
    min-width: 350px;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.header-content p {
    font-size: 1.2rem;
    color: #666;
}

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

.header-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f0f0f0;
    object-fit: cover;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.service-detail-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f0f0f0;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    min-width: 350px;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    font-size: 1rem;
    color: #555;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 1.5rem;
}

.price-box {
    background-color: #f0f6ff;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

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

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
}

.about-intro-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f0f0f0;
    object-fit: cover;
}

.intro-content {
    flex: 1;
    min-width: 350px;
}

.intro-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.mission-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.mission-split.reverse {
    flex-direction: row-reverse;
}

.mission-content {
    flex: 1;
    min-width: 350px;
}

.mission-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.mission-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
}

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

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f0f0f0;
    object-fit: cover;
}

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

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-split-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.value-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.approach-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f0f0f0;
    object-fit: cover;
}

.approach-content {
    flex: 1;
    min-width: 350px;
}

.approach-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.approach-steps {
    padding-left: 1.5rem;
}

.approach-steps li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.team-highlight-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.team-highlight-split.reverse {
    flex-direction: row-reverse;
}

.team-content {
    flex: 1;
    min-width: 350px;
}

.team-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f0f0f0;
    object-fit: cover;
}

.contact-header {
    text-align: center;
    padding: 4rem 2rem 2rem;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 1.2rem;
    color: #666;
}

.contact-split-main {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info-left {
    flex: 1;
    min-width: 350px;
}

.contact-info-left h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #0066cc;
}

.contact-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

.contact-map-right {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.contact-map-right img {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    background-color: #f0f0f0;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: rgba(0, 102, 204, 0.9);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 6px;
}

.map-overlay p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.contact-additional {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.additional-content {
    flex: 1;
    min-width: 350px;
}

.additional-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.additional-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.additional-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f0f0f0;
    object-fit: cover;
}

.thanks-split {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.thanks-content {
    flex: 1;
    min-width: 350px;
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-confirmation {
    font-size: 1rem;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

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

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f0f0f0;
    object-fit: cover;
}

.next-steps {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.step-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.legal-container p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container ul li {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #0052a3;
}

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

    .nav-links {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-left h1,
    .header-content h1,
    .intro-content h1 {
        font-size: 2rem;
    }

    .services-header-split {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-content-left h2,
    .values-section h2,
    .next-steps h2 {
        font-size: 2rem;
    }
}