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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    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;
    margin: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #4da6ff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #3d8ad9;
}

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

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

.nav-main {
    background-color: #ffffff;
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

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

.nav-brand {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #4da6ff;
}

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

.hero-section {
    background-color: #f8f9fa;
    padding: 10rem 2rem;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1400&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.3rem;
    color: #4a4a4a;
    font-weight: 300;
}

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

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

.intro-section {
    padding: 8rem 0;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.image-section {
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.philosophy-section {
    padding: 8rem 0;
    background-color: #fafafa;
}

.philosophy-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
}

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

.services-preview {
    padding: 8rem 0;
}

.services-preview h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 2rem 0 1rem 0;
}

.service-card p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #4da6ff;
}

.trust-section {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

.trust-section blockquote {
    border: none;
    padding: 0;
}

.trust-section blockquote p {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.8;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

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

.image-break {
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
}

.image-break img {
    width: 100%;
    height: auto;
    display: block;
}

.approach-section {
    padding: 8rem 0;
}

.approach-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.approach-text p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.expertise-section {
    padding: 8rem 0;
    background-color: #fafafa;
}

.expertise-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.expertise-section p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.citation {
    color: #4da6ff;
    text-decoration: none;
    font-weight: 500;
}

.citation:hover {
    text-decoration: underline;
}

.form-section {
    padding: 8rem 0;
}

.form-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.contact-form {
    margin-top: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #1a1a1a;
}

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

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

.btn-submit {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #4da6ff;
}

.final-section {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

.final-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.final-section p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem 0;
}

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

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

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-section p {
    color: #b0b0b0;
    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: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-section ol.references {
    padding-left: 1.2rem;
}

.footer-section ol.references li {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: #b0b0b0;
}

.footer-section ol.references li a {
    color: #4da6ff;
    text-decoration: none;
}

.footer-section ol.references li a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0 2rem;
    text-align: center;
}

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

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

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

    .nav-links {
        gap: 1.5rem;
    }

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

    .service-card {
        min-width: 100%;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}