* {
    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;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    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: #2c3e50;
}

.nav-brand a {
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

.nav-links a.active {
    color: #f39c12;
    border-bottom: 2px solid #f39c12;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 90vh;
    overflow: hidden;
    background-color: #34495e;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 1.5rem;
    color: #ecf0f1;
    max-width: 700px;
}

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

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

.content-narrow p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #34495e;
}

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

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

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

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.split-image {
    flex: 1;
    min-width: 300px;
    background-color: #e0e0e0;
}

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

.insight-reveal {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.content-centered p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.image-full {
    margin-top: 3rem;
    background-color: #e0e0e0;
}

.image-full img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.approach-unique {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #ffffff;
}

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

.offset-content {
    max-width: 700px;
    margin-left: 5rem;
}

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

.offset-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #fff;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card cite {
    display: block;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

.benefits-reveal {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.content-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.benefit-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

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

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 1.5rem 1rem;
    color: #555;
}

.service-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f39c12;
    margin: 1rem 1.5rem;
}

.cta-button {
    display: block;
    width: calc(100% - 3rem);
    margin: 1.5rem;
    padding: 1rem;
    background: #f39c12;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #e67e22;
}

.form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #ffffff;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #ecf0f1;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #7f8c8d;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
    color: #2c3e50;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f39c12;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: #f39c12;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #e67e22;
}

.trust-elements {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.trust-list {
    list-style: none;
    margin-top: 2rem;
}

.trust-list li {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
    padding-left: 2rem;
    position: relative;
}

.trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.3rem;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

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

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

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

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f39c12;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #95a5a6;
}

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

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

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

.cookie-content a {
    color: #f39c12;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

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

.cookie-reject:hover {
    background: #6c7a7b;
}

.page-hero {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    text-align: center;
    color: #ffffff;
}

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

.hero-content p {
    font-size: 1.3rem;
    color: #ecf0f1;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.team-approach {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.team-approach img {
    width: 100%;
    height: auto;
    margin-top: 2rem;
    border-radius: 12px;
    background-color: #e0e0e0;
}

.expertise-areas {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.expertise-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

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

.process-steps {
    margin-top: 3rem;
}

.process-step {
    margin-bottom: 2.5rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #f39c12;
}

.process-step p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

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

.cta-about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    text-align: center;
}

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

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

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #f39c12;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.service-detail-item {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #34495e;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.service-detail-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.service-detail-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

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

.price-label {
    font-size: 1rem;
    color: #7f8c8d;
    margin-right: 1rem;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #e0e0e0;
}

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

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

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.cta-services {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    text-align: center;
}

.contact-info {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

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

.email-display {
    font-family: monospace;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
}

.note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-image {
    flex: 1;
    min-width: 300px;
    background-color: #e0e0e0;
}

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

.contact-form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.visit-info {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.thanks-hero {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    text-align: center;
    color: #ffffff;
}

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

.thanks-content p {
    font-size: 1.4rem;
    color: #fff;
}

.thanks-details {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.thanks-message h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-message p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.service-highlight {
    font-weight: 700;
    color: #f39c12;
}

.next-steps {
    list-style: none;
    margin: 2rem 0;
}

.next-steps li {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
    padding-left: 2rem;
    position: relative;
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: 700;
    font-size: 1.3rem;
}

.confirmation-box {
    background: #e8f8f5;
    border-left: 4px solid #27ae60;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.confirmation-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.confirmation-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.thanks-actions {
    margin-top: 3rem;
}

.thanks-actions h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-actions p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.action-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.action-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #f39c12;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.action-button:hover {
    background: #e67e22;
}

.thanks-reassurance {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.legal-page {
    margin-top: 80px;
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #555;
}

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

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

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

.legal-page a {
    color: #f39c12;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #e67e22;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .split-layout {
        flex-direction: column;
    }

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

    .offset-content {
        margin-left: 0;
    }

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

    .ad-disclosure {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

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

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