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

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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 0.75rem;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background: #ffffff;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

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

.nav-links {
    display: flex;
    gap: 3rem;
}

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

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

.hero-minimal {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 3rem 6rem;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 4rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1a252f;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
}

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

.hero-visual {
    width: 100%;
    height: 600px;
    background: #f8f9fa;
}

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

.philosophy-intro {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 3rem;
    background: #f8f9fa;
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #1a252f;
}

.content-narrow p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.services-overview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 3rem;
}

.services-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 300;
    color: #1a252f;
}

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

.service-card {
    flex: 1 1 calc(50% - 1.5rem);
    max-width: 600px;
    background: #ffffff;
    border: 1px solid #e9ecef;
}

.service-image {
    width: 100%;
    height: 350px;
    background: #f8f9fa;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 2rem 2rem 1rem;
    font-weight: 400;
    color: #2c3e50;
}

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

.service-price {
    display: block;
    margin: 0 2rem 1.5rem;
    font-size: 1.25rem;
    color: #2c3e50;
    font-weight: 600;
}

.service-link {
    display: inline-block;
    margin: 0 2rem 2rem;
    color: #3498db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.service-link:hover {
    color: #2980b9;
}

.approach-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 3rem;
    background: #f8f9fa;
}

.approach-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-content img {
    flex: 1;
    max-width: 550px;
    height: 450px;
    object-fit: cover;
    background: #e9ecef;
}

.approach-text {
    flex: 1;
    max-width: 600px;
}

.approach-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #1a252f;
}

.approach-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.link-arrow {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 1rem;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: #2980b9;
}

.form-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 3rem;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #1a252f;
}

.form-intro {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e9ecef;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
    color: #2c3e50;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1a252f;
}

.disclaimer-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: #f8f9fa;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.6;
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 4rem 3rem 2rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.footer-brand p {
    color: #95a5a6;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

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

.footer-column a {
    display: block;
    color: #95a5a6;
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 3rem;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: inherit;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background: #27ae60;
    color: #ffffff;
}

.cookie-btn.reject {
    background: #95a5a6;
    color: #ffffff;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.page-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem 4rem;
}

.header-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #1a252f;
}

.header-content p {
    font-size: 1.25rem;
    color: #5a6c7d;
    font-weight: 300;
}

.about-intro {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem 4rem;
}

.content-wide {
    width: 100%;
}

.content-wide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background: #f8f9fa;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    background: #f8f9fa;
}

.values-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
}

.values-container h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 300;
    color: #1a252f;
}

.value-item {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #2c3e50;
}

.value-item p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.leadership-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    background: #f8f9fa;
}

.leadership-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.leadership-text {
    flex: 1;
}

.leadership-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #1a252f;
}

.leadership-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.leadership-content img {
    flex: 1;
    max-width: 550px;
    height: 450px;
    object-fit: cover;
    background: #e9ecef;
}

.approach-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
}

.cta-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    background: #2c3e50;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #95a5a6;
}

.cta-content .cta-primary {
    background: #ffffff;
    color: #2c3e50;
}

.cta-content .cta-primary:hover {
    background: #ecf0f1;
}

.services-page-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem 4rem;
    text-align: center;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: #ffffff;
    border: 1px solid #e9ecef;
}

.service-detail-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #2c3e50;
}

.service-detail-price {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 2rem;
    display: block;
}

.service-detail-card p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-card ul {
    list-style: none;
    margin: 2rem 0;
}

.service-detail-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
    color: #5a6c7d;
}

.service-detail-card ul li:last-child {
    border-bottom: none;
}

.contact-info-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-column {
    flex: 1;
}

.contact-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #2c3e50;
}

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

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.thanks-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 3rem;
    text-align: center;
}

.thanks-page h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #1a252f;
}

.thanks-page p {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.thanks-detail {
    background: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #27ae60;
}

.thanks-detail p {
    font-size: 1rem;
    color: #2c3e50;
    margin: 0;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #1a252f;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #2c3e50;
}

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

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

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

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

    .hero-subtitle {
        font-size: 1.25rem;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .hero-minimal,
    .philosophy-intro,
    .services-overview,
    .approach-section,
    .form-section,
    .about-intro,
    .about-content,
    .values-section,
    .leadership-section,
    .approach-detail {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

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