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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.nav-ad-label {
    font-size: 11px;
    color: #666666;
    background-color: #f5f5f5;
    padding: 4px 12px;
    border-radius: 12px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
}

.hero-visual {
    flex: 1;
    background-color: #f7fafc;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
    align-items: center;
    background-color: #f9fafb;
}

.intro-visual {
    flex: 1;
    background-color: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
}

.value-proposition {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.value-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.value-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
    text-align: left;
}

.services-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.services-intro {
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 20px;
    color: #4a5568;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 400px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #f3f4f6;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    color: #4a5568;
    margin: 0 24px 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin: 0 24px 20px;
}

.btn-select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: #f3f4f6;
    color: #1a1a1a;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.btn-select-service.selected {
    background-color: #10b981;
    color: #ffffff;
    border-color: #10b981;
}

.testimonial-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 32px;
}

.testimonial-content p {
    font-size: 22px;
    font-style: italic;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-content cite {
    font-size: 16px;
    color: #6b7280;
    font-style: normal;
    font-weight: 600;
}

.testimonial-visual {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
}

.testimonial-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.form-section {
    background-color: #f9fafb;
    padding: 80px 40px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    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: #2563eb;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    max-width: 1400px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
}

.final-cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
}

.final-cta-content p {
    font-size: 20px;
    color: #e0e7ff;
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.3);
}

.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #374151;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.5;
}

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

.footer-bottom p {
    font-size: 14px;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .testimonial-split {
        flex-direction: column;
    }

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

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 1 calc(50% - 30px);
    }
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 40px;
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
}

.header-content p {
    font-size: 20px;
    color: #e0e7ff;
    max-width: 800px;
    margin: 0 auto;
}

.about-story {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.story-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-visual {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
}

.story-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.story-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-approach {
    background-color: #f9fafb;
    padding: 80px 40px;
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.approach-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-content {
    flex: 1;
}

.approach-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
}

.approach-visual {
    flex: 1;
    background-color: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.approach-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-team {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.team-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.team-container > p {
    font-size: 18px;
    color: #4a5568;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.team-visual-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.team-image {
    flex: 1;
    max-width: 500px;
    background-color: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-values {
    background-color: #f9fafb;
    padding: 80px 40px;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.about-cta {
    max-width: 1400px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
}

.about-cta .cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
}

.about-cta .cta-content p {
    font-size: 20px;
    color: #e0e7ff;
    margin-bottom: 32px;
}

.services-detail {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e5e7eb;
}

.service-detail-block:last-child {
    border-bottom: none;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-detail-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.6;
}

.service-detail-visual {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-cta {
    max-width: 1400px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
}

.services-cta .cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
}

.services-cta .cta-content p {
    font-size: 20px;
    color: #e0e7ff;
    margin-bottom: 32px;
}

.contact-info-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px;
}

.contact-detail-card h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-detail-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
}

.contact-email {
    font-weight: 600;
    color: #2563eb;
    font-size: 18px;
}

.contact-note {
    font-style: italic;
    color: #6b7280;
    font-size: 14px;
    margin-top: 12px;
}

.contact-visual {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-map-section {
    background-color: #f9fafb;
    padding: 60px 40px;
}

.map-info {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.map-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.map-info p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-faq {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.faq-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.thanks-container {
    max-width: 900px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
}

.thanks-details {
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 48px;
    text-align: left;
}

.thanks-details p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
}

.thanks-links {
    list-style: none;
    margin-top: 20px;
}

.thanks-links li {
    margin-bottom: 12px;
}

.thanks-links a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.thanks-links a:hover {
    color: #1d4ed8;
}

.thanks-next-steps {
    margin-bottom: 48px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 16px;
    padding-left: 32px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-date {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 32px;
}

@media (max-width: 1024px) {
    .story-container,
    .approach-split,
    .contact-container,
    .service-detail-block {
        flex-direction: column;
    }

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

    .team-visual-grid {
        flex-direction: column;
    }

    .value-item,
    .faq-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        height: auto;
        padding: 15px 20px;
    }

    .nav-ad-label {
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

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

    .footer-column {
        flex: 1 1 100%;
    }

    .header-content h1 {
        font-size: 32px;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
}