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

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.brand {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 12px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

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

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

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.intro-story {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.story-content {
    max-width: 680px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
    color: #34495e;
}

.story-content p {
    margin-bottom: 25px;
}

.visual-break {
    padding: 0;
}

.dual-image-layout {
    display: flex;
    flex-wrap: wrap;
}

.image-block {
    flex: 1 1 50%;
    min-width: 300px;
    background-color: #95a5a6;
}

.image-block img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.text-block {
    flex: 1 1 50%;
    min-width: 300px;
    padding: 80px 60px;
    background-color: #ecf0f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.text-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.problem-amplification {
    padding: 120px 20px;
    background-color: #2c3e50;
}

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

.centered-text-block h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.centered-text-block p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #bdc3c7;
}

.image-statement {
    width: 100%;
    background-color: #7f8c8d;
}

.image-statement img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.insight-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.insight-text {
    flex: 1 1 500px;
}

.insight-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
}

.insight-visual {
    flex: 1 1 400px;
    background-color: #95a5a6;
}

.insight-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.testimonials-inline {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 35px;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #2c3e50;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
}

.benefits-reveal {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 35px;
    background-color: #f8f9fa;
    border-top: 3px solid #2c3e50;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #34495e;
}

.services-pricing {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-intro p {
    font-size: 19px;
    color: #7f8c8d;
}

.services-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    max-width: 400px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 25px 20px;
    color: #34495e;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin: 20px 25px;
}

.cta-select {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-select:hover {
    background-color: #34495e;
}

.form-section {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-subtitle {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #dfe6e9;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.final-cta {
    padding: 100px 20px;
    background-color: #2c3e50;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

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

.final-cta-content p {
    font-size: 20px;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a252f;
    color: #bdc3c7;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 250px;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #24323f;
    border-left: 3px solid #3498db;
    font-size: 13px;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 25px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #2980b9;
}

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

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

.page-hero {
    margin-top: 120px;
    padding: 80px 20px;
    background-color: #2c3e50;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 20px;
    color: #bdc3c7;
}

.about-intro {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-text-block {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
    color: #34495e;
}

.about-text-block p {
    margin-bottom: 25px;
}

.about-visual-section {
    background-color: #95a5a6;
}

.about-visual-section img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-process {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

.process-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.process-text {
    flex: 1 1 550px;
}

.process-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.process-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.process-image {
    flex: 1 1 400px;
    background-color: #95a5a6;
}

.process-image img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
}

.values-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.values-intro {
    text-align: center;
    margin-bottom: 60px;
}

.values-intro h2 {
    font-size: 40px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1 1 calc(50% - 18px);
    min-width: 280px;
    padding: 40px;
    background-color: #f8f9fa;
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.value-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.team-section {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

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

.team-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.team-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #34495e;
}

.sustainability-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.sustainability-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.sustainability-image {
    flex: 1 1 450px;
    background-color: #95a5a6;
}

.sustainability-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.sustainability-text {
    flex: 1 1 500px;
}

.sustainability-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.sustainability-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.cta-about {
    padding: 80px 20px;
    background-color: #2c3e50;
}

.cta-about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

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

.cta-about-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary-link {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary-link:hover {
    background-color: #2980b9;
}

.services-detailed {
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1 1 450px;
    background-color: #95a5a6;
}

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

.service-detail-content {
    flex: 1 1 500px;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin: 25px 0;
}

.btn-service-order {
    display: inline-block;
    padding: 14px 35px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-service-order:hover {
    background-color: #34495e;
}

.process-timeline {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

.timeline-intro {
    text-align: center;
    margin-bottom: 60px;
}

.timeline-intro h2 {
    font-size: 40px;
    color: #2c3e50;
}

.timeline-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.timeline-step {
    flex: 1 1 calc(25% - 23px);
    min-width: 220px;
    padding: 35px 25px;
    background-color: #ffffff;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #3498db;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.timeline-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.timeline-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #7f8c8d;
}

.contact-info {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.contact-details {
    flex: 1 1 500px;
}

.contact-details h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.contact-image {
    flex: 1 1 450px;
    background-color: #95a5a6;
}

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

.contact-faq {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

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

.faq-wrapper h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.contact-directions {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.directions-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.directions-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
}

.thanks-section {
    padding: 120px 20px;
    background-color: #f8f9fa;
    min-height: 70vh;
}

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

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #34495e;
}

.thanks-details {
    margin: 50px 0;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
}

.thanks-details p {
    font-size: 18px;
    margin-bottom: 10px;
}

.thanks-next-steps {
    margin: 60px 0;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.next-steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.step-card {
    flex: 1 1 250px;
    max-width: 300px;
    padding: 30px;
    background-color: #ffffff;
    text-align: left;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #7f8c8d;
}

.thanks-actions {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-link {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

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

.legal-page {
    padding: 50px 20px 80px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

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

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

.legal-table th,
.legal-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #dfe6e9;
}

.legal-table th {
    background-color: #ecf0f1;
    font-weight: 600;
    color: #2c3e50;
}

.legal-table td {
    font-size: 15px;
    color: #34495e;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 12px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .story-content {
        font-size: 18px;
    }

    .dual-image-layout {
        flex-direction: column;
    }

    .text-block {
        padding: 50px 30px;
    }

    .text-block h2 {
        font-size: 28px;
    }

    .centered-text-block h2 {
        font-size: 32px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .form-container {
        padding: 35px 25px;
    }

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

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

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

    .timeline-step {
        flex: 1 1 100%;
    }

    .thanks-content h1 {
        font-size: 34px;
    }

    .legal-content h1 {
        font-size: 32px;
    }
}