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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #0066cc;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    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;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #0066cc;
    color: #fff;
}

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

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

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

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

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

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

.hero-left p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.cta-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #0066cc;
    text-decoration: none;
    border: 2px solid #0066cc;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #0066cc;
    color: #fff;
}

.cta-text {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #0066cc;
    transition: all 0.3s;
}

.cta-text:hover {
    color: #0052a3;
    border-bottom-color: #0052a3;
}

.intro-reverse {
    display: flex;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

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

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

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1rem;
}

.insight-panel {
    display: flex;
    background-color: #1a1a1a;
    color: #fff;
    min-height: 500px;
}

.panel-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.panel-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.panel-left p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #ddd;
}

.panel-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

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

.stat-card p {
    font-size: 1rem;
    color: #ddd;
}

.services-preview {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.service-card {
    flex: 1;
    max-width: 350px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

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

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

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #555;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1rem 1.5rem;
}

.service-card .cta-secondary {
    margin: 1.5rem;
}

.testimonial-split {
    display: flex;
    background-color: #f9f9f9;
    min-height: 400px;
}

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

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    color: #333;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1rem;
    font-style: normal;
    color: #666;
}

.testimonial-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.cta-form-section {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
}

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

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

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #444;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #2a2a2a;
    color: #fff;
}

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

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

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bbb;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.875rem;
    color: #bbb;
    line-height: 1.6;
}

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

.about-hero {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #f9f9f9;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.5rem;
    color: #555;
}

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

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

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

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1rem;
}

.philosophy-panel {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.philosophy-panel h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    flex: 1;
}

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

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

.team-reverse {
    display: flex;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-text p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1rem;
}

.team-visual {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.values-split {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1.125rem;
    color: #ddd;
    line-height: 1.6;
}

.cta-about {
    padding: 5rem 2rem;
    text-align: center;
}

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

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

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

.services-hero {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #f9f9f9;
    max-width: 1200px;
    margin: 0 auto;
}

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

.services-hero p {
    font-size: 1.25rem;
    color: #555;
}

.service-detail-split {
    display: flex;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

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

.service-detail-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-text p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

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

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    margin-top: 1.5rem;
}

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

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

.service-detail-reverse {
    display: flex;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
    flex-direction: row-reverse;
}

.services-form-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.contact-hero {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #f9f9f9;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-hero p {
    font-size: 1.25rem;
    color: #555;
}

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

.contact-info {
    flex: 1;
}

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

.contact-info > p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
}

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

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

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

.contact-visual {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-context {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.contact-context h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.context-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.context-item {
    flex: 1;
}

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

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

.thanks-container {
    display: flex;
    min-height: 500px;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-content p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-content a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.thanks-content a:hover {
    text-decoration: underline;
}

.thanks-visual {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

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

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
    color: #555;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-page a {
    color: #0066cc;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-split,
    .intro-reverse,
    .insight-panel,
    .testimonial-split,
    .story-split,
    .team-reverse,
    .service-detail-split,
    .service-detail-reverse,
    .contact-split,
    .thanks-container {
        flex-direction: column;
    }

    .services-grid,
    .philosophy-grid,
    .values-split,
    .context-grid {
        flex-direction: column;
    }

    .hero-left h1,
    .about-hero-content h1,
    .services-hero h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }
}