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

.main-header {
    padding: 3rem 2rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

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

.nav-brand a {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

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

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

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

.hero-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.hero-content {
    text-align: center;
}

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

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

.hero-image {
    width: 100%;
    overflow: hidden;
    border-radius: 2px;
    background-color: #f4f4f4;
}

.hero-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

.intro-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.intro-wrapper {
    text-align: center;
}

.intro-wrapper h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.intro-wrapper p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

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

.services-preview h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 5rem;
    text-align: center;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

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

.service-card {
    width: 100%;
    max-width: 600px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    overflow: hidden;
    background-color: #f4f4f4;
}

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

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2rem 2rem 1rem 2rem;
    color: #1a1a1a;
}

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

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

.leadership-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.leadership-content {
    flex: 1;
}

.leadership-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.leadership-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.leadership-image {
    flex: 1;
    background-color: #f4f4f4;
}

.leadership-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

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

.form-container h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.form-intro {
    font-size: 1.125rem;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.form-group label {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
}

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

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

.btn-submit {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
    background-color: #2c3e50;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

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

.disclaimer-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.disclaimer-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #5a6c7d;
    text-align: center;
}

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

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

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

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

.footer-column ul li 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.875rem;
    color: #808080;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e8e8e8;
    padding: 2rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #2c3e50;
}

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

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

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

.btn-cookie.accept:hover {
    background-color: #1a252f;
}

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

.btn-cookie.reject:hover {
    background-color: #d1d5db;
}

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

.page-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    font-weight: 300;
}

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

.about-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.about-wrapper p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.team-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.team-image {
    flex: 1;
    background-color: #f4f4f4;
}

.team-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.team-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

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

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
    text-align: center;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.approach-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.approach-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.approach-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.cta-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.btn-cta {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
    background-color: #2c3e50;
    text-decoration: none;
    transition: background-color 0.3s;
}

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

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

.service-block {
    display: flex;
    gap: 6rem;
    margin-bottom: 8rem;
    align-items: center;
}

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

.service-image-large {
    flex: 1;
    background-color: #f4f4f4;
}

.service-image-large img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.service-info p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-info ul {
    margin: 2rem 0 2rem 1.5rem;
}

.service-info ul li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 0.75rem;
}

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

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.price-unit {
    font-size: 1rem;
    color: #7f8c8d;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    background-color: #2c3e50;
    text-decoration: none;
    transition: background-color 0.3s;
}

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

.services-note {
    max-width: 800px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.note-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.note-content p {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.btn-link {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
    transition: color 0.3s;
}

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

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.contact-info-block {
    margin-bottom: 6rem;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

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

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

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

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

.contact-note h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-note p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.map-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.map-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

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

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

.thanks-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.thanks-message {
    font-size: 1.5rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.thanks-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

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

.btn-primary {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
    background-color: #2c3e50;
    text-decoration: none;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #2c3e50;
    background-color: transparent;
    text-decoration: none;
    border: 1px solid #2c3e50;
    transition: all 0.3s;
}

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

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

.legal-page h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.legal-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

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

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

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

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

.legal-page ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 0.75rem;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-date {
    margin-top: 4rem;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

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

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

    .leadership-section,
    .team-section,
    .service-block {
        flex-direction: column;
        gap: 3rem;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

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

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

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

    .intro-wrapper h2,
    .services-preview h2 {
        font-size: 2rem;
    }

    .services-grid {
        gap: 2rem;
    }

    .value-item {
        min-width: 100%;
    }
}