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

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

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.7rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.hero-content p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-visual {
    flex: 1;
    background-color: #e8ecef;
}

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

.cta-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background-color: #1a252f;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #2c3e50;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.insight-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

.insight-visual {
    flex: 1;
    background-color: #e8ecef;
}

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

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

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

.insight-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.problem-section {
    background-color: #2c3e50;
    padding: 5rem 2rem;
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-text {
    flex: 1.5;
}

.problem-text h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.problem-text p {
    font-size: 1.05rem;
    color: #e8ecef;
    margin-bottom: 1.2rem;
}

.problem-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
}

.stat-label {
    font-size: 0.95rem;
    color: #e8ecef;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.approach-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.approach-visual {
    flex: 1;
    background-color: #e8ecef;
}

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

.testimonial-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

blockquote {
    flex: 1;
    padding: 2.5rem;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
}

blockquote p {
    font-size: 1.15rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.value-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

.value-visual {
    flex: 1;
    background-color: #e8ecef;
}

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

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

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

.value-list {
    list-style: none;
}

.value-list li {
    font-size: 1.05rem;
    color: #4a5568;
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.value-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #3498db;
    text-align: center;
}

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

.cta-container p {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-container .cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-container .cta-primary:hover {
    background-color: #f8f9fa;
}

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

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-section p {
    font-size: 0.95rem;
    color: #b8c2cc;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #2c3e50;
    border-radius: 6px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

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

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

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

.cookie-btn.reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.page-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.15rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

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

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

.about-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.about-visual {
    flex: 1;
    background-color: #e8ecef;
}

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

.philosophy-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

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

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

.philosophy-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
}

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

.philosophy-item p {
    font-size: 1rem;
    color: #4a5568;
}

.expertise-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
}

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

.expertise-visual {
    flex: 1;
    background-color: #e8ecef;
}

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

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

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

.expertise-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

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

.insight-list li {
    font-size: 1rem;
    color: #4a5568;
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
}

.insight-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
}

.team-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.team-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.team-container p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
}

.values-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

.values-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.values-visual {
    flex: 1;
    background-color: #e8ecef;
}

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

.services-section {
    padding: 2rem;
    background-color: #ffffff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    margin-bottom: 3rem;
    background-color: #f8f9fa;
    overflow: hidden;
}

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

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

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

.service-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

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

.service-includes li {
    font-size: 0.95rem;
    color: #4a5568;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.service-pricing {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e8ecef;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.service-visual {
    flex: 1;
    background-color: #e8ecef;
}

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

.inquiry-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.inquiry-container {
    max-width: 700px;
    margin: 0 auto;
}

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

.inquiry-container > p {
    text-align: center;
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.service-inquiry-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e8ecef;
    border-radius: 6px;
    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: #3498db;
}

.service-inquiry-form button {
    width: 100%;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

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

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

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

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #4a5568;
}

.contact-note {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.contact-note p {
    font-size: 0.95rem;
    color: #4a5568;
}

.contact-visual {
    flex: 1;
    background-color: #e8ecef;
}

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

.thanks-section {
    padding: 5rem 2rem;
    min-height: 500px;
}

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

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

.thanks-container > p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

#serviceConfirmation {
    font-size: 1.05rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.next-steps {
    list-style: none;
}

.next-steps li {
    font-size: 1.05rem;
    color: #4a5568;
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

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

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

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

.last-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-container p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

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

.legal-container a:hover {
    color: #2980b9;
}

.cookie-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #e8ecef;
}

.cookie-table td {
    padding: 1rem;
    color: #4a5568;
    border-bottom: 1px solid #e8ecef;
}

@media (max-width: 768px) {
    .hero-split,
    .insight-split,
    .approach-split,
    .value-split,
    .about-split,
    .expertise-split,
    .values-split,
    .service-card,
    .contact-split {
        flex-direction: column;
    }

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

    .problem-container,
    .testimonial-container,
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .philosophy-grid {
        flex-direction: column;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
}