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

.main-nav {
    background-color: #1a3a52;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.nav-disclosure {
    font-size: 0.75rem;
    color: #a8c5d9;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: #5da9d6;
}

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

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #229954;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

.hero-content-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #d4e4f0;
}

.hero-image-right {
    flex: 1;
    background-color: #e8edf1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.intro-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.intro-text-right {
    flex: 1;
    padding: 2rem;
}

.intro-text-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a3a52;
    line-height: 1.3;
}

.intro-text-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555555;
    line-height: 1.8;
}

.intro-image-left {
    flex: 1;
    background-color: #e8edf1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.process-section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: #1a3a52;
}

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

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

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

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

.process-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
}

.services-highlight {
    display: flex;
    min-height: 500px;
}

.services-visual-left {
    flex: 1;
    background-color: #e8edf1;
    overflow: hidden;
}

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

.services-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.services-content-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.services-content-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #d4e4f0;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: #1a3a52;
}

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

.trust-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a3a52;
}

.trust-item p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

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

.testimonials-section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: #1a3a52;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1a3a52;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #1a3a52;
    color: #ffffff;
}

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

.form-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #d4e4f0;
}

.contact-form {
    background-color: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ccc;
    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: #27ae60;
}

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

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.final-cta-section {
    padding: 5rem 2rem;
    background-color: #27ae60;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-final {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #27ae60;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

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

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: #d4e4f0;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #a8c5d9;
    font-size: 0.9rem;
}

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

.disclaimer-footer {
    font-size: 0.85rem;
    margin-top: 1rem;
    line-height: 1.6;
    color: #a8c5d9;
}

.page-header {
    padding: 4rem 2rem;
    background-color: #1a3a52;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #d4e4f0;
}

.services-list {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

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

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

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: #e8edf1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.service-content-left,
.service-content-right {
    flex: 1;
    padding: 2rem;
}

.service-content-left h2,
.service-content-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a3a52;
}

.service-content-left p,
.service-content-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.2rem;
}

.service-pricing {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
}

.price-label {
    display: block;
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background-color: #1a3a52;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-service:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.services-note {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

.note-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.note-container h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #856404;
}

.note-container p {
    font-size: 1rem;
    color: #856404;
    line-height: 1.7;
}

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

.about-content-left {
    flex: 1;
    padding: 2rem;
}

.about-content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a3a52;
}

.about-content-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.2rem;
}

.about-image-right {
    flex: 1;
    background-color: #e8edf1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

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

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #27ae60;
}

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

.value-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
}

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

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

.approach-image-left {
    flex: 1;
    background-color: #e8edf1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.approach-content-right {
    flex: 1;
    padding: 2rem;
}

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

.approach-content-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.2rem;
}

.experience-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.experience-section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: #1a3a52;
}

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

.experience-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.experience-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a3a52;
}

.experience-item p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
}

.region-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.region-content-left {
    flex: 1;
    padding: 2rem;
}

.region-content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a3a52;
}

.region-content-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.2rem;
}

.region-image-right {
    flex: 1;
    background-color: #e8edf1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

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

.contact-info-left {
    flex: 1;
    padding: 2rem;
}

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

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a3a52;
}

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.contact-note p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.7;
}

.contact-map-right {
    flex: 1;
    background-color: #e8edf1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

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

.contact-options {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.contact-options h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: #1a3a52;
}

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

.option-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.option-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a3a52;
}

.option-item p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a3a52;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 3rem;
}

.thanks-next-steps {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a3a52;
}

.thanks-next-steps ul {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.thanks-next-steps li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 0.8rem;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1a3a52;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.legal-page {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

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

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

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

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

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

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

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

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

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

    .hero-split,
    .intro-wrapper,
    .services-highlight,
    .service-item-split,
    .about-intro-split,
    .approach-split,
    .region-split,
    .contact-content-split {
        flex-direction: column;
    }

    .hero-content-left,
    .services-content-right {
        padding: 3rem 2rem;
    }

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

    .process-cards,
    .trust-grid,
    .testimonials-wrapper,
    .values-grid,
    .experience-content,
    .options-grid {
        flex-direction: column;
    }

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