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

.ad-disclosure {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 600;
    color: #0066cc;
    text-decoration: none;
}

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

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

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

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

.hero-content {
    flex: 1;
    padding: 80px 8%;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-color: #e3f2fd;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #0052a3;
}

.intro-section {
    display: flex;
    padding: 80px 8%;
}

.intro-left {
    flex: 0.9;
    background-color: #f0f0f0;
}

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

.intro-right {
    flex: 1.1;
    padding: 50px 60px;
    background-color: #ffffff;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-right p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
}

.mission-statement {
    padding: 100px 8%;
    background-color: #004080;
    color: #ffffff;
    text-align: center;
}

.mission-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
}

.mission-content p {
    font-size: 19px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-preview {
    padding: 80px 8% 60px;
    background-color: #fafafa;
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header h2 {
    font-size: 42px;
    color: #1a1a1a;
}

.service-split {
    display: flex;
    margin-bottom: 60px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.service-image {
    flex: 1;
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

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

.service-select {
    padding: 14px 28px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.service-select:hover {
    background-color: #0052a3;
}

.impact-section {
    padding: 90px 8%;
    background-color: #ffffff;
}

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

.impact-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.impact-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.form-section {
    padding: 80px 8%;
    background-color: #f8f9fa;
}

.form-container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-left p {
    font-size: 17px;
    color: #555;
}

.form-right {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.cta-submit {
    padding: 16px 36px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 50px 8%;
    background-color: #fff8e1;
    border-top: 1px solid #ffe082;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 8% 30px;
}

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px 8%;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.cookie-accept:hover {
    opacity: 0.9;
}

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

.cookie-reject:hover {
    opacity: 0.8;
}

.page-hero {
    background-color: #004080;
    color: #ffffff;
    padding: 100px 8%;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

.about-split {
    display: flex;
    padding: 80px 8%;
    gap: 60px;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
}

.about-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.values-section {
    padding: 80px 8%;
    background-color: #f8f9fa;
}

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

.value-item {
    flex: 1 1 calc(50% - 40px);
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.team-split {
    display: flex;
    padding: 80px 8%;
    gap: 60px;
}

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

.team-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.team-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
}

.team-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.approach-section {
    padding: 80px 8%;
    background-color: #ffffff;
}

.approach-header {
    text-align: center;
    margin-bottom: 60px;
}

.approach-header h2 {
    font-size: 40px;
    color: #1a1a1a;
}

.approach-split {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.approach-content {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
}

.approach-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0066cc;
}

.approach-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.milestones-section {
    padding: 80px 8%;
    background-color: #f8f9fa;
}

.milestones-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.milestone-list {
    max-width: 800px;
    margin: 0 auto;
}

.milestone-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 25px;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.milestone-year {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    min-width: 80px;
}

.milestone-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.cta-about {
    padding: 80px 8%;
    background-color: #004080;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.services-detailed {
    padding: 60px 8%;
    background-color: #ffffff;
}

.service-detail-split {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.service-pricing-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 25px 0;
}

.price-label {
    font-size: 14px;
    color: #777;
}

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

.services-form-section {
    padding: 80px 8%;
    background-color: #f8f9fa;
}

.services-form-container {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    color: #555;
}

.contact-split {
    display: flex;
    padding: 80px 8%;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0066cc;
}

.contact-block p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #0066cc;
}

.contact-note p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.contact-additional {
    padding: 60px 8%;
    background-color: #ffffff;
}

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

.additional-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.additional-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.7;
}

.map-placeholder {
    padding: 60px 8%;
    background-color: #f8f9fa;
}

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

.map-content p {
    font-size: 17px;
    color: #555;
}

.thanks-section {
    display: flex;
    min-height: 500px;
    padding: 80px 8%;
    gap: 60px;
}

.thanks-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.thanks-service-info {
    background-color: #e3f2fd;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.thanks-service-info p {
    font-size: 17px;
    color: #004080;
    font-weight: 600;
}

.thanks-next {
    margin-bottom: 35px;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.thanks-next ul {
    margin-left: 20px;
}

.thanks-next ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #0066cc;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.thanks-image {
    flex: 0.8;
    background-color: #e0e0e0;
}

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

.legal-page {
    padding: 60px 8% 80px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #0066cc;
}

.legal-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

    .nav-right {
        gap: 15px;
    }

    .hero-content h1,
    .page-hero-content h1 {
        font-size: 36px;
    }

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

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

    .value-item {
        flex: 1 1 100%;
    }

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