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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand h1 {
    font-size: 1.8rem;
    color: #2c2c2c;
    font-weight: 600;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    background-color: #f5f5f5;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-menu li a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #d4526e;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c2c2c;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .ad-disclosure {
        display: none;
    }
}

.hero-magazine {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #f0e6e4;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-box {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 2rem;
}

.hero-text-box h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text-box p {
    font-size: 1.5rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero-magazine {
        height: 60vh;
    }

    .hero-text-box h2 {
        font-size: 2rem;
    }

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

.container-narrow {
    max-width: 750px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.container-magazine {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.container-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 5%;
}

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

.column-left,
.column-right {
    flex: 1;
}

.section-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f0e6e4;
}

.content-padded {
    padding: 2rem;
}

@media (max-width: 968px) {
    .container-split,
    .container-split.reverse {
        flex-direction: column;
        gap: 2rem;
    }
}

.intro-story h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-weight: 600;
    line-height: 1.3;
}

.intro-story p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    color: #4a4a4a;
}

.problem-amplification {
    background-color: #fafafa;
}

.problem-amplification h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.problem-amplification p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.insight-reveal {
    padding: 5rem 0;
}

.bg-light {
    background-color: #f9f7f6;
}

.text-center-block {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 4rem;
}

.text-center-block h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.lead-text {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
}

.three-column-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

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

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #f0e6e4;
}

.feature-card h4 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c2c2c;
}

.feature-card p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.6;
}

.testimonials-inline {
    background-color: #fafafa;
}

.testimonial {
    background-color: #ffffff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #d4526e;
    font-style: italic;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial p {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 0.95rem;
}

.services-reveal {
    padding: 5rem 0;
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.services-layout-mixed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item-wide {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.service-content-flex {
    display: flex;
    align-items: center;
    gap: 0;
}

.service-text {
    flex: 1;
    padding: 3rem;
}

.service-image-box {
    flex: 1;
    background-color: #f0e6e4;
}

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

.service-item-wide h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-price {
    font-size: 1.8rem;
    color: #d4526e;
    font-weight: 700;
    margin: 1.5rem 0;
}

.btn-service {
    background-color: #d4526e;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.btn-service:hover {
    background-color: #b8445c;
}

.service-two-column {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-item-compact {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-item-compact h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-item-compact p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-item-featured {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-image-full {
    width: 100%;
    height: 450px;
    background-color: #f0e6e4;
}

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

.service-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
    color: #ffffff;
    padding: 3rem;
}

.service-text-overlay h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.btn-service-light {
    background-color: #ffffff;
    color: #2c2c2c;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.btn-service-light:hover {
    background-color: #f0f0f0;
}

@media (max-width: 968px) {
    .service-content-flex {
        flex-direction: column;
    }

    .service-two-column {
        flex-direction: column;
    }
}

.trust-building {
    background-color: #fafafa;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #4a4a4a;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4526e;
    font-weight: bold;
    font-size: 1.3rem;
}

.form-section {
    padding: 5rem 0;
}

.container-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 5%;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #555;
    font-size: 1.1rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    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: #d4526e;
}

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

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

.form-selected-service {
    text-align: center;
    margin-top: 1.5rem;
    color: #d4526e;
    font-weight: 600;
}

.disclaimer-section {
    background-color: #f9f7f6;
    padding: 3rem 0;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    line-height: 1.7;
    font-style: italic;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

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

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

.footer-col p {
    color: #ccc;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4526e;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0 1rem;
    margin-top: 2rem;
    border-top: 1px solid #444;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    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-content a {
    color: #d4526e;
    text-decoration: underline;
}

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

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

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

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

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

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

.page-hero {
    padding: 4rem 0 2rem;
    background-color: #f9f7f6;
}

.page-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

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

.about-story {
    padding: 4rem 0;
}

.about-story h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.about-story p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.values-section {
    padding: 5rem 0;
}

.values-section h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

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

.value-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

.team-section {
    padding: 4rem 0;
}

.team-section h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.team-section p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.commitment-section {
    background-color: #fafafa;
}

.commitment-section h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.commitment-section p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-section {
    padding: 5rem 0;
}

.cta-section h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

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

.btn-primary {
    display: inline-block;
    background-color: #d4526e;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #b8445c;
}

.services-detailed {
    padding: 3rem 0;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.service-image-side {
    flex: 1;
    background-color: #f0e6e4;
}

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

.service-content-side {
    flex: 1;
    padding: 3rem;
}

.service-content-side h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.service-content-side p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.service-pricing-box {
    margin-top: 2rem;
}

.price-tag {
    font-size: 2rem;
    color: #d4526e;
    font-weight: 700;
    margin-bottom: 1rem;
}

.btn-service-page {
    background-color: #d4526e;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.btn-service-page:hover {
    background-color: #b8445c;
}

@media (max-width: 968px) {
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .service-image-side {
        width: 100%;
        height: 300px;
    }
}

.contact-info-section {
    padding: 3rem 0;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details-box {
    flex: 1;
}

.contact-details-box h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

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

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.contact-item p {
    color: #555;
    line-height: 1.7;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f9f7f6;
    border-left: 4px solid #d4526e;
    border-radius: 4px;
}

.contact-note p {
    color: #555;
    line-height: 1.7;
}

.contact-image-box {
    flex: 1;
    background-color: #f0e6e4;
    border-radius: 8px;
    overflow: hidden;
}

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

@media (max-width: 968px) {
    .contact-layout {
        flex-direction: column;
    }

    .contact-image-box {
        height: 300px;
    }
}

.visit-section {
    padding: 4rem 0;
}

.visit-section h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.visit-section p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.directions-section {
    padding: 4rem 0;
}

.directions-section h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.directions-section p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.faq-section {
    padding: 4rem 0;
    background-color: #fafafa;
}

.faq-section h3 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #2c2c2c;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 0;
    min-height: 60vh;
}

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

.thanks-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.thanks-message {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #f9f7f6;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-next-steps {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-note {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2.5rem;
}

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

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

.btn-secondary:hover {
    background-color: #555;
}

.next-steps-info {
    padding: 4rem 0;
}

.next-steps-info h3 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #2c2c2c;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #d4526e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.step-content p {
    color: #555;
    line-height: 1.7;
}

.social-proof-section {
    padding: 4rem 0;
}

.social-proof-section h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

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

.legal-page h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-updated {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.legal-page h3 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-page h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

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

.legal-page ul li {
    margin-bottom: 0.7rem;
    color: #4a4a4a;
    line-height: 1.7;
}

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

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