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

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

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #95a5a6;
    border-left: 1px solid #34495e;
    padding-left: 1.5rem;
    font-style: italic;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1;
    min-width: 400px;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.hero-right {
    flex: 1;
    min-width: 400px;
    background-color: #e8edf2;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.info-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

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

.info-content {
    flex: 1;
    min-width: 400px;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

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

.info-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.info-image {
    flex: 1;
    min-width: 400px;
    background-color: #e8edf2;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.values-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

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

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.value-card p {
    font-size: 1rem;
    color: #34495e;
}

.testimonial-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    background-color: #1a2332;
}

.testimonial-content {
    flex: 1;
    min-width: 400px;
    padding: 5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-content blockquote {
    border-left: 4px solid #3498db;
    padding-left: 2rem;
}

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

.testimonial-content cite {
    font-size: 1rem;
    color: #95a5a6;
    font-style: normal;
}

.testimonial-image {
    flex: 1;
    min-width: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.services-preview {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.services-intro p {
    font-size: 1.2rem;
    color: #34495e;
}

.services-selection {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.service-option {
    padding: 2rem;
    background-color: #f8f9fa;
    border: 2px solid #e0e4e8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option:hover {
    border-color: #2c5aa0;
    background-color: #ffffff;
    transform: translateX(8px);
}

.service-option.selected {
    border-color: #2c5aa0;
    background-color: #e8f0f8;
}

.service-option h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a2332;
}

.service-option p {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5aa0;
}

.consultation-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.consultation-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a2332;
}

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

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

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d7de;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2c5aa0;
}

.selected-service-display {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    color: #34495e;
}

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

.btn-submit:hover:not(:disabled) {
    background-color: #1e4278;
}

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

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

.trust-content {
    flex: 1;
    min-width: 400px;
    padding: 4rem 3rem;
    background-color: #f8f9fa;
}

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

.trust-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.trust-image {
    flex: 1;
    min-width: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.disclaimer-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
}

.disclaimer-content {
    padding: 2.5rem;
    background-color: #fff9e6;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d68910;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #5d4e37;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a2332;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

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

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

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

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ecf0f1;
    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;
    min-width: 300px;
}

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

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

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

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

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

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

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

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

.header-content p {
    font-size: 1.3rem;
    color: #95a5a6;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1;
    min-width: 400px;
    padding: 4rem 3rem;
}

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

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.service-detail-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c5aa0;
    margin: 2rem 0;
}

.service-detail-image {
    flex: 1;
    min-width: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8edf2;
}

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

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #ffffff;
    color: #2c5aa0;
    text-decoration: none;
    border: 2px solid #2c5aa0;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cta-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 4rem 3rem;
    background-color: #2c5aa0;
    text-align: center;
    border-radius: 8px;
}

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

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

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

.about-content {
    flex: 1;
    min-width: 400px;
    padding: 4rem 3rem;
}

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

.about-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.about-image {
    flex: 1;
    min-width: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8edf2;
}

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

.approach-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 4rem 3rem;
    background-color: #f8f9fa;
}

.approach-header h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a2332;
}

.approach-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

.approach-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.approach-step p {
    font-size: 1rem;
    color: #34495e;
}

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

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

.team-content {
    flex: 1;
    min-width: 400px;
    padding: 4rem 3rem;
    background-color: #f8f9fa;
}

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

.team-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.team-image {
    flex: 1;
    min-width: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.values-detailed {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 4rem 3rem;
}

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

.values-split {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.value-content {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.value-content p {
    font-size: 1rem;
    color: #34495e;
}

.location-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    flex-wrap: wrap;
    background-color: #1a2332;
}

.location-content {
    flex: 1;
    min-width: 400px;
    padding: 4rem 3rem;
    color: #ecf0f1;
}

.location-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.location-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.location-image {
    flex: 1;
    min-width: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.contact-info {
    flex: 1;
    min-width: 400px;
    padding: 4rem 3rem;
}

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

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

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

.contact-block p {
    font-size: 1.05rem;
    color: #34495e;
}

.contact-image {
    flex: 1;
    min-width: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8edf2;
}

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

.directions-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 4rem 3rem;
    background-color: #f8f9fa;
}

.directions-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a2332;
}

.directions-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.direction-option h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.direction-option p {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 1rem;
}

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

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

.inquiry-content {
    flex: 1;
    min-width: 400px;
    padding: 4rem 3rem;
}

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

.inquiry-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.inquiry-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.inquiry-content ul li {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 0.5rem;
}

.inquiry-image {
    flex: 1;
    min-width: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8edf2;
}

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

.thanks-section {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem;
}

.thanks-container {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a2332;
}

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

.thanks-message p {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 1rem;
}

.selected-service-info {
    margin-bottom: 3rem;
}

.service-confirmation {
    padding: 2rem;
    background-color: #e8f0f8;
    border-radius: 8px;
    border: 2px solid #2c5aa0;
}

.service-confirmation h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5aa0;
}

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

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

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-num {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
    min-width: 50px;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.step-text p {
    font-size: 1rem;
    color: #34495e;
}

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

.btn-home,
.btn-services {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-home {
    background-color: #2c5aa0;
    color: #ffffff;
}

.btn-home:hover {
    background-color: #1e4278;
}

.btn-services {
    background-color: #ffffff;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.btn-services:hover {
    background-color: #2c5aa0;
    color: #ffffff;
}

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

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

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

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

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

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

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

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

@media (max-width: 768px) {
    .hero-left,
    .hero-right,
    .info-content,
    .info-image,
    .trust-content,
    .trust-image,
    .testimonial-content,
    .testimonial-image,
    .service-detail-content,
    .service-detail-image,
    .about-content,
    .about-image,
    .team-content,
    .team-image,
    .location-content,
    .location-image,
    .contact-info,
    .contact-image,
    .inquiry-content,
    .inquiry-image {
        min-width: 100%;
    }

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .ad-disclosure {
        border-left: none;
        padding-left: 0;
        width: 100%;
        margin-top: 0.5rem;
        text-align: center;
    }

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

    .values-grid,
    .approach-grid,
    .directions-grid {
        flex-direction: column;
    }
}