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

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

.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: 20px;
}

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

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

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

.btn-accept {
    background: #2563eb;
    color: #ffffff;
}

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

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

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

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 3px;
}

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

.nav-menu a {
    color: #333;
    text-decoration: none;
    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-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-text {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 36px;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f0f0f0;
}

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

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.story-section {
    background: #f9fafb;
    padding: 100px 40px;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e5e7eb;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.insight-section {
    padding: 100px 40px;
    background: #ffffff;
}

.insight-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.insight-text {
    flex: 1.2;
}

.insight-text h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 26px;
    color: #1a1a1a;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.benefit-list {
    list-style: none;
    margin-top: 32px;
}

.benefit-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #333;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 20px;
}

.insight-visual {
    flex: 0.8;
}

.insight-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e5e7eb;
}

.testimonial-inline {
    background: #1a1a1a;
    padding: 80px 40px;
}

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-inline p {
    font-size: 26px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #999;
    font-style: normal;
}

.services-reveal {
    padding: 100px 40px;
    background: #f9fafb;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

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

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

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

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

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

.btn-select:hover {
    background: #333;
}

.form-section {
    padding: 100px 40px;
    background: #ffffff;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

.selected-display {
    background: #f9fafb;
    padding: 20px;
    border-radius: 6px;
    margin-top: 24px;
    min-height: 60px;
}

.selected-display.active {
    background: #eff6ff;
    border: 2px solid #2563eb;
}

.selected-display p {
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.form-right {
    flex: 1;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

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

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

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

.btn-submit:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

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

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.trust-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

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

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

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

.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 80px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 20px;
    color: #ccc;
}

.about-split {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 40px;
    display: flex;
    gap: 70px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e5e7eb;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 40px;
    background: #f9fafb;
}

.values-section h2 {
    text-align: center;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.team-approach {
    padding: 100px 40px;
    background: #ffffff;
}

.approach-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e5e7eb;
}

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

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e5e7eb;
}

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

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

.price-display {
    font-size: 40px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

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

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.btn-order {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.cta-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

.contact-grid {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 36px;
}

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e5e7eb;
}

.location-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    background: #f9fafb;
}

.location-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.location-section > p {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.location-details {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.location-item {
    flex: 1;
    min-width: 300px;
}

.location-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.location-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    min-height: 60vh;
    padding: 100px 40px;
    background: #f9fafb;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.service-info {
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    min-height: 80px;
}

.selected-service-box h3 {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

.service-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

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

.thanks-details {
    background: #ffffff;
    padding: 36px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-details ol {
    padding-left: 20px;
}

.thanks-details ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.btn-secondary {
    display: inline-block;
    background: #ffffff;
    color: #2563eb;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2563eb;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #eff6ff;
}

.thanks-contact {
    font-size: 15px;
    color: #666;
}

.legal-page {
    min-height: 60vh;
    padding: 60px 40px;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-container ul,
.legal-container ol {
    margin: 20px 0;
    padding-left: 24px;
}

.legal-container ul li,
.legal-container ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-container a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #1d4ed8;
}

.legal-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.legal-container table th,
.legal-container table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.legal-container table th {
    background: #f9fafb;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-container table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 968px) {
    .hero-split,
    .story-container,
    .insight-wrapper,
    .about-split,
    .approach-wrapper,
    .service-detail-item,
    .contact-grid,
    .form-container {
        flex-direction: column;
    }

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

    .hero-left h1 {
        font-size: 42px;
    }

    .nav-container {
        flex-wrap: wrap;
        height: auto;
        padding: 16px 20px;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }

    .services-grid {
        gap: 20px;
    }

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

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .hero-left h1 {
        font-size: 36px;
    }

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

    .services-header h2 {
        font-size: 36px;
    }
}