* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7c;
    --accent-color: #e8904f;
    --text-dark: #1f1f1f;
    --text-light: #5a5a5a;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e1e4e8;
    --success-color: #28a745;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
    margin-top: -1px;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 0;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.split-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    min-height: 500px;
}

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

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

.split-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.split-image {
    flex: 1;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.split-form {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    padding: 60px;
}

.form-container {
    width: 100%;
    max-width: 500px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-container h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.trust-indicators {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

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

.indicator-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.indicator {
    flex: 1;
    text-align: center;
    padding: 40px 20px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.indicator h3 {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.indicator p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 24px 28px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.service-card .price {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.select-service {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.testimonial {
    flex: 1;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial cite {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 12px 32px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
}

.cta-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.disclaimer-section {
    background-color: var(--bg-light);
    padding: 40px;
}

.disclaimer {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 24px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    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: 30px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.btn-accept {
    background-color: var(--accent-color);
    color: white;
}

.btn-accept:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.page-hero {
    background-color: var(--bg-light);
    padding: 100px 40px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.values-section,
.team-section,
.mission-section {
    padding: 80px 40px;
}

.values-section h2,
.team-section h2,
.mission-section h2 {
    text-align: center;
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.value-item {
    flex: 1;
    background-color: var(--bg-light);
    padding: 36px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.value-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.expertise-list {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-item {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
}

.expertise-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.expertise-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.mission-content p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.8;
}

.services-detailed {
    padding: 60px 40px;
}

.service-detail-card {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 60px;
    min-height: 500px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-description {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
    margin-top: 10px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #d47f3f;
    transform: translateY(-2px);
}

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.comparison-section {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

.comparison-section h2 {
    text-align: center;
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.comparison-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background-color: var(--bg-white);
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table thead {
    background-color: var(--primary-color);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-weight: 600;
    font-size: 16px;
}

.comparison-table td {
    font-size: 15px;
    color: var(--text-dark);
}

.comparison-table tbody tr:hover {
    background-color: var(--bg-light);
}

.contact-section {
    padding: 60px 40px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 36px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.email-display {
    color: var(--text-dark);
}

.contact-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.location-section {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

.location-section h2 {
    text-align: center;
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.location-section > .container > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.location-details {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-item {
    flex: 1;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.location-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.location-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.faq-section {
    padding: 80px 40px;
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 28px 32px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.thanks-section {
    padding: 60px 40px;
    min-height: 500px;
}

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

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

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.7;
}

.selected-service-info {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-color);
}

.next-steps h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.steps-list {
    margin-bottom: 40px;
}

.step-item {
    margin-bottom: 28px;
}

.step-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.step-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.thanks-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.additional-resources {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

.additional-resources h2 {
    text-align: center;
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.resource-item {
    flex: 1;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.resource-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.resource-item p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.resource-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-item a:hover {
    color: #d47f3f;
}

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

.legal-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.update-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.legal-content ul li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #d47f3f;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .split-section,
    .contact-container,
    .thanks-container {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .hero-content,
    .split-content {
        padding: 40px 20px;
    }

    .split-form {
        padding: 40px 20px;
    }

    .indicator-grid,
    .values-grid,
    .testimonials-grid,
    .expertise-list,
    .location-details,
    .resources-grid {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 20px;
    }

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