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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.brand {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.hero-minimal {
    margin-top: 80px;
    padding: 8rem 3rem;
    background-color: #fafafa;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 300;
}

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #e8e8e8;
}

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

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

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

.large-text {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #2a2a2a;
}

.intro-section p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.services-preview {
    padding: 8rem 3rem;
    background-color: #fafafa;
}

.services-preview h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 5rem;
    letter-spacing: -0.01em;
}

.service-grid-minimal {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background-color: #e8e8e8;
}

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

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

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

.price {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.text-link {
    display: inline-block;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.text-link:hover {
    opacity: 0.6;
}

.quote-section {
    padding: 8rem 3rem;
}

.quote-section blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-section p {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.5;
    font-style: italic;
    color: #2a2a2a;
}

.form-section {
    padding: 8rem 3rem;
    background-color: #fafafa;
}

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

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

.form-container > p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 3rem;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group label {
    font-size: 0.95rem;
    color: #4a4a4a;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    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: #1a1a1a;
}

.btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
    align-self: flex-start;
}

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

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

.content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.split-text p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.split-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

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

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

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p,
.footer-column li {
    font-size: 0.9rem;
    color: #aaaaaa;
    line-height: 1.8;
}

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

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

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #888888;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.75rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: #ffffff;
    padding: 1.5rem 3rem;
    z-index: 2000;
    display: none;
    backdrop-filter: blur(10px);
}

.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;
    color: #dddddd;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-header {
    margin-top: 80px;
    padding: 6rem 3rem 4rem;
    text-align: center;
    background-color: #fafafa;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.header-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
    font-weight: 300;
}

.about-intro {
    padding: 6rem 3rem;
}

.about-image-full {
    background-color: #e8e8e8;
}

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

.philosophy-content {
    padding: 8rem 3rem;
}

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

.content-medium h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

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

.values-section {
    padding: 8rem 3rem;
    background-color: #fafafa;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.value-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.team-approach {
    padding: 8rem 3rem;
}

.content-split-reverse {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 5rem;
    align-items: center;
}

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

.service-detail-item {
    display: flex;
    gap: 5rem;
    margin-bottom: 8rem;
    align-items: center;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

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

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.service-detail-content > p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #4a4a4a;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-label {
    font-size: 0.95rem;
    color: #888;
}

.price-value {
    font-size: 1.6rem;
    font-weight: 500;
    color: #1a1a1a;
}

.service-detail-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.cta-section {
    padding: 6rem 3rem;
    background-color: #fafafa;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

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

.contact-page {
    padding: 6rem 3rem;
}

.contact-layout {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-block h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.contact-info-block h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
}

.contact-info-block p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.contact-note {
    padding: 6rem 3rem;
    background-color: #fafafa;
}

.contact-note p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.thanks-page {
    padding: 10rem 3rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

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

.thanks-service-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #fafafa;
}

.thanks-service-info p {
    font-size: 1rem;
    color: #4a4a4a;
}

.legal-page {
    padding: 5rem 3rem;
    margin-top: 80px;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

.legal-content p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

    .nav-links {
        gap: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .content-split,
    .content-split-reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
        gap: 3rem;
    }

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

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

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

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