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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: #1a1a1a;
    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 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f4d03f;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #aaa;
    padding: 0.3rem 0.6rem;
    border: 1px solid #555;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    background-color: #f9f9f9;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background-color: #fff;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #f4d03f;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
    text-align: center;
}

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

.story-section {
    display: flex;
    padding: 5rem 3rem;
    gap: 4rem;
    align-items: center;
}

.story-content {
    flex: 1.2;
}

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

.story-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #555;
}

.story-image {
    flex: 1;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

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

.problem-reveal {
    display: flex;
    background-color: #f4f4f4;
    min-height: 70vh;
}

.problem-left {
    flex: 1;
    background-color: #ccc;
    overflow: hidden;
}

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

.problem-right {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problem-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.insight-box {
    background-color: #ffe5a1;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #f4d03f;
    border-radius: 4px;
}

.insight-box p {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.trust-building {
    padding: 5rem 3rem;
    background-color: #fff;
}

.trust-building h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
}

.trust-building > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #555;
}

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

.benefit-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.testimonials-inline {
    background-color: #2a2a2a;
    padding: 4rem 3rem;
}

.testimonial-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.author {
    font-size: 0.95rem;
    color: #f4d03f;
    font-weight: 500;
}

.services-reveal {
    padding: 5rem 3rem;
    background-color: #fafafa;
}

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

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

.services-intro p {
    font-size: 1.15rem;
    color: #666;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

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

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

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

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

.btn-select {
    display: block;
    width: calc(100% - 3rem);
    margin: 1.5rem 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #333;
}

.service-card.featured {
    border: 3px solid #f4d03f;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #f4d03f;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.form-section {
    padding: 5rem 3rem;
    background-color: #fff;
}

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

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

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

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

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

.form-group input {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.service-display {
    padding: 1rem;
    background-color: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    color: #666;
    font-weight: 500;
}

.service-display.selected {
    background-color: #fffaed;
    border-color: #f4d03f;
    color: #333;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #f4d03f;
    color: #1a1a1a;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.final-trust {
    padding: 5rem 3rem;
    background-color: #f4f4f4;
}

.final-trust h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
}

.trust-points {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-point {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.trust-point h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.trust-point p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 3rem 2rem 1rem;
}

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

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

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

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

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #222;
    border-left: 3px solid #f4d03f;
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #aaa;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie.accept {
    background-color: #f4d03f;
    color: #1a1a1a;
}

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

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

.btn-cookie.reject:hover {
    background-color: #fff;
    color: #1a1a1a;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.thanks-container {
    text-align: center;
    max-width: 700px;
    background-color: #fff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.thanks-details {
    background-color: #f4f4f4;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.05rem;
    color: #333;
}

.thanks-container > p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.btn-primary {
    display: inline-block;
    background-color: #f4d03f;
    color: #1a1a1a;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1a1a1a;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

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

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.2rem;
    color: #ccc;
}

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

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.service-detail-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f4d03f;
    margin-bottom: 1.5rem;
}

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

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f4d03f;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.cta-section {
    background-color: #f4d03f;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.about-hero {
    display: flex;
    min-height: 70vh;
    background-color: #f9f9f9;
}

.about-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background-color: #fff;
}

.about-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.about-hero-image {
    flex: 1;
    background-color: #ddd;
    overflow: hidden;
}

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

.about-story {
    display: flex;
    gap: 3rem;
    padding: 5rem 3rem;
    align-items: center;
}

.story-block {
    flex: 1.2;
}

.story-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.values-section {
    background-color: #f4f4f4;
    padding: 5rem 3rem;
}

.values-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.process-section {
    padding: 5rem 3rem;
    background-color: #fff;
}

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

.process-container h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    color: #1a1a1a;
}

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

.team-section {
    background-color: #f9f9f9;
    padding: 5rem 3rem;
}

.team-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #555;
}

.team-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f4d03f;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #555;
}

.contact-page {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.contact-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-side {
    flex: 1;
    padding: 3rem;
}

.contact-info-side h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-info-side > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

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

.email-display {
    color: #555;
    font-weight: 500;
}

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

.contact-note p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.contact-visual-side {
    flex: 1;
    background-color: #ddd;
    overflow: hidden;
}

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

.location-info {
    padding: 4rem 2rem;
    background-color: #fff;
}

.location-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

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

.location-description p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    min-height: 70vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

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

.legal-intro {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

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

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

.legal-section a {
    color: #f4d03f;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #e0bf35;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .story-section {
        flex-direction: column;
    }

    .problem-reveal {
        flex-direction: column;
    }

    .about-hero {
        flex-direction: column;
    }

    .about-story {
        flex-direction: column;
    }

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

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

    .contact-container {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }
}