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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    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: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #f0f0f0;
}

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

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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

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

.nav-links a:hover {
    opacity: 0.6;
}

.ad-notice {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.hero-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 3rem;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #333333;
}

.hero-image {
    flex: 1;
}

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

.intro-section {
    background: #f8f8f8;
    padding: 6rem 3rem;
}

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

.intro-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

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

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

.values-grid {
    display: flex;
    gap: 4rem;
    justify-content: space-between;
}

.value-item {
    flex: 1;
}

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

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

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

.services-preview h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-intro {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 4rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: #ffffff;
    padding: 3rem;
    border: 1px solid #e8e8e8;
}

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

.service-card p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

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

.service-select:hover {
    background: #333333;
}

.link-secondary {
    display: inline-block;
    margin-top: 2rem;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

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

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

.approach-container {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

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

.approach-image {
    flex: 1;
}

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

.why-section {
    background: #f8f8f8;
    padding: 8rem 3rem;
}

.why-section h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.reasons-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.reason-block h4 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.reason-block p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

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

.testimonial-section blockquote {
    border-left: 3px solid #1a1a1a;
    padding-left: 3rem;
}

.testimonial-section blockquote p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

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

.contact-preview {
    background: #1a1a1a;
    color: #ffffff;
    padding: 8rem 3rem;
    text-align: center;
}

.contact-preview h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-preview p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc;
}

.cta-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #f0f0f0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal-content h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e8e8e8;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

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

.btn-submit:hover {
    background: #333333;
}

.main-footer {
    background: #f8f8f8;
    padding: 5rem 3rem 2rem;
}

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

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

.footer-section p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1a1a1a;
}

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

.disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.page-header {
    background: #f8f8f8;
    padding: 5rem 3rem 3rem;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.page-intro {
    font-size: 1.2rem;
    color: #666;
}

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

.large-text {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 2rem;
}

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

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

.story-container {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.story-image {
    flex: 1;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

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

.about-philosophy {
    background: #f8f8f8;
    padding: 6rem 3rem;
}

.about-philosophy h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.philosophy-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

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

.expertise-container {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.expertise-text {
    flex: 1;
}

.expertise-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

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

.expertise-image {
    flex: 1;
}

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

.about-values {
    background: #f8f8f8;
    padding: 6rem 3rem;
}

.about-values h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-detail h4 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.value-detail p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

.about-cta {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 3rem;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-cta p {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.services-detailed {
    padding: 5rem 3rem;
}

.services-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-full {
    border: 1px solid #e8e8e8;
    padding: 3rem;
    background: #ffffff;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-header h2 {
    font-size: 2rem;
    font-weight: 400;
}

.service-price-large {
    font-size: 1.75rem;
    font-weight: 500;
}

.service-description h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-description p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-description ul {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-description ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #4a4a4a;
}

.service-description ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.services-info {
    background: #f8f8f8;
    padding: 6rem 3rem;
}

.services-info h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.process-steps {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.process-step {
    flex: 1;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: #cccccc;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.services-cta {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 3rem;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.services-cta p {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.contact-main {
    padding: 5rem 3rem;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
}

.contact-form-section {
    flex: 1.5;
}

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

.contact-form-section select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e8e8e8;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
}

.contact-form-section select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.contact-info-section {
    flex: 1;
}

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

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

.contact-detail h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.contact-detail p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-detail .no-link {
    color: #1a1a1a;
    font-weight: 400;
}

.contact-detail .note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

.contact-expect {
    background: #f8f8f8;
    padding: 6rem 3rem;
}

.contact-expect h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.contact-expect > .content-wrapper > p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.expect-list {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.expect-item {
    flex: 1;
}

.expect-item h4 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.expect-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

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

.contact-questions h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

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

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

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

.thanks-message {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.service-info {
    margin-bottom: 3rem;
}

.service-highlight {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    background: #f8f8f8;
    display: inline-block;
}

.thanks-next {
    margin-bottom: 3rem;
}

.thanks-next h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.next-step {
    flex: 1;
    max-width: 200px;
    text-align: center;
}

.step-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.next-step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-info {
    background: #f8f8f8;
    padding: 6rem 3rem;
}

.thanks-info h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.info-cards {
    display: flex;
    gap: 3rem;
}

.info-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border: 1px solid #e8e8e8;
}

.info-card h4 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

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

.info-card a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.info-card a:hover {
    opacity: 0.6;
}

.legal-content {
    padding: 5rem 3rem;
}

.legal-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.legal-content .updated {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 3rem;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

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

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

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 3rem;
    }

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

    .approach-container {
        flex-direction: column;
        gap: 3rem;
    }

    .values-grid {
        flex-direction: column;
        gap: 3rem;
    }

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

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

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

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

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

    .intro-section h2,
    .why-section h2,
    .contact-preview h2 {
        font-size: 2rem;
    }

    .services-preview h2 {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: stretch;
        flex-direction: column;
    }

    .story-container,
    .expertise-container {
        flex-direction: column;
        gap: 3rem;
    }

    .page-header h1,
    .thanks-content h1 {
        font-size: 2.5rem;
    }

    .process-steps,
    .expect-list,
    .next-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .info-cards {
        flex-direction: column;
        gap: 2rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .legal-content h2 {
        font-size: 1.5rem;
    }
}