* {
    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: #2c2c2c;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #e0e0e0;
}

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

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

.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #888888;
    font-style: italic;
    padding: 0.25rem 0.75rem;
    background: #f5f5f5;
    border-radius: 3px;
}

.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.4rem;
    line-height: 1.5;
    opacity: 0.95;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.intro-cards {
    background: #f9f9f9;
}

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

.intro-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.intro-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 2rem;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.card-body p {
    color: #555555;
    line-height: 1.7;
}

.story-section {
    background: #ffffff;
}

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

.story-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #444444;
    line-height: 1.8;
}

.story-section img {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 8px;
    object-fit: cover;
}

.insight-section {
    background: #fafafa;
}

.insight-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.insight-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555555;
    line-height: 1.7;
}

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

.benefit-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444444;
    font-size: 1.05rem;
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: bold;
}

.insight-image {
    flex: 1;
    min-width: 300px;
}

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

.testimonial-inline {
    background: #2c2c2c;
    color: #ffffff;
}

.testimonial-inline blockquote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    border: none;
}

.testimonial-inline footer {
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    opacity: 0.8;
}

.services-reveal {
    background: #ffffff;
}

.services-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 3rem;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.service-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

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

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

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

.select-service-btn {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #444444;
}

.service-card.selected {
    border-color: #2c2c2c;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.form-section {
    background: #f9f9f9;
}

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

.form-section > .container-narrow > p {
    text-align: center;
    color: #666666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #444444;
}

.final-cta {
    background: #ffffff;
    text-align: center;
}

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

.final-cta p {
    font-size: 1.2rem;
    color: #666666;
}

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

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

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

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

.footer-column p {
    color: #cccccc;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    text-align: center;
    color: #999999;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

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

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

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .card-grid,
    .services-card-grid,
    .insight-layout {
        flex-direction: column;
    }

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