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

.ad-notice {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

.main-nav {
    background-color: #1a1a2e;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4a90e2;
}

.hero-section {
    display: flex;
    min-height: 600px;
    background-color: #f5f7fa;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 36px;
    color: #5a6c7d;
    max-width: 520px;
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e0e4e8;
}

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

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

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

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

.cta-secondary:hover {
    background-color: #334155;
}

.intro-block {
    padding: 80px 20px;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-text {
    font-size: 19px;
    line-height: 1.8;
    color: #475569;
}

.visual-divider {
    height: 400px;
    overflow: hidden;
    background-color: #d1d5db;
}

.visual-divider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-matters {
    padding: 100px 20px;
    background-color: #f9fafb;
}

.two-col-offset {
    display: flex;
    gap: 60px;
    align-items: center;
}

.col-text {
    flex: 1.2;
}

.col-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.col-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #475569;
}

.col-image {
    flex: 1;
    background-color: #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
}

.col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-grid {
    padding: 100px 20px;
    background-color: #ffffff;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    max-width: 380px;
    background-color: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    padding: 0 0 24px 0;
    transition: transform 0.3s;
}

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

.card-icon {
    width: 100%;
    height: 240px;
    background-color: #cbd5e1;
    overflow: hidden;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #1a1a2e;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 16px;
    color: #64748b;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin: 16px 20px;
}

.select-service {
    margin: 0 20px;
    width: calc(100% - 40px);
    padding: 12px 24px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #1d4ed8;
}

.process-section {
    padding: 100px 20px;
    background-color: #f9fafb;
}

.process-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.process-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    flex: 1 1 300px;
    max-width: 360px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.step-item p {
    font-size: 16px;
    color: #64748b;
}

.cta-section {
    padding: 100px 20px;
    background-color: #1e293b;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 19px;
    color: #cbd5e1;
    margin-bottom: 36px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a2e;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #64748b;
    margin-bottom: 40px;
}

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

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

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

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

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

.form-group input[readonly] {
    background-color: #f1f5f9;
    cursor: not-allowed;
}

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

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

.main-footer {
    background-color: #1a1a2e;
    color: #cbd5e1;
    padding: 60px 20px 20px;
}

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

.footer-col {
    flex: 1 1 250px;
}

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 24px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.cookie-btn.reject {
    background-color: #475569;
    color: #ffffff;
}

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

.page-header {
    background-color: #f5f7fa;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.page-subtitle {
    font-size: 20px;
    color: #64748b;
}

.about-intro {
    padding: 80px 20px;
    background-color: #ffffff;
}

.large-text {
    font-size: 22px;
    line-height: 1.7;
    color: #475569;
}

.about-content {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.content-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-text {
    flex: 1;
}

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

.content-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #475569;
}

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

.content-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.value-item {
    flex: 1 1 calc(50% - 16px);
    max-width: 480px;
    padding: 32px;
    background-color: #f8fafc;
    border-radius: 8px;
}

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

.value-item p {
    font-size: 16px;
    color: #64748b;
}

.team-section {
    padding: 100px 20px;
    background-color: #f9fafb;
}

.team-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.section-intro {
    font-size: 18px;
    color: #475569;
    margin-bottom: 48px;
    max-width: 860px;
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach-block {
    padding: 32px;
    background-color: #ffffff;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

.approach-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.approach-block p {
    font-size: 16px;
    color: #64748b;
}

.cta-about {
    padding: 100px 20px;
    background-color: #1e293b;
    text-align: center;
}

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

.cta-about p {
    font-size: 19px;
    color: #cbd5e1;
    margin-bottom: 32px;
}

.services-detailed {
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-detail-block {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

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

.service-description {
    font-size: 17px;
    margin-bottom: 24px;
    color: #475569;
}

.service-features {
    margin-bottom: 24px;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.service-features ul {
    list-style-position: inside;
    color: #64748b;
}

.service-features ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

.price-display {
    padding: 16px 24px;
    background-color: #eff6ff;
    border-radius: 6px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 15px;
    color: #64748b;
    margin-right: 8px;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #cbd5e1;
    height: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.additional-info {
    padding: 60px 20px;
    background-color: #f9fafb;
}

.additional-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.additional-info p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 16px;
}

.contact-info-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a2e;
}

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

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

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

.contact-item .note {
    margin-top: 8px;
    font-size: 14px;
    color: #64748b;
    font-style: italic;
}

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

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

.location-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.location-section p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 16px;
}

.response-time {
    padding: 80px 20px;
    background-color: #ffffff;
}

.info-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background-color: #eff6ff;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.info-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.info-box p {
    font-size: 16px;
    color: #475569;
}

.thanks-section {
    padding: 120px 20px;
    background-color: #f9fafb;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

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

.service-confirmation {
    margin-bottom: 48px;
    padding: 20px;
    background-color: #eff6ff;
    border-radius: 8px;
}

.service-info {
    font-size: 18px;
    color: #1e293b;
}

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

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

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step p {
    font-size: 16px;
    color: #475569;
    padding-top: 8px;
}

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

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

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

.btn-secondary {
    display: inline-block;
    background-color: #f1f5f9;
    color: #1e293b;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #e2e8f0;
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

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

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

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

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #475569;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 16px;
    margin-left: 24px;
    color: #475569;
}

.legal-page ul li {
    margin-bottom: 8px;
    line-height: 1.7;
}

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

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

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

.cookie-table thead {
    background-color: #f1f5f9;
}

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

.cookie-table th {
    font-weight: 600;
    color: #1e293b;
}

.cookie-table td {
    color: #475569;
}

@media (max-width: 968px) {
    .hero-section {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
    }

    .two-col-offset,
    .content-grid,
    .contact-layout,
    .service-detail-block {
        flex-direction: column;
    }

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

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .process-steps {
        flex-direction: column;
    }

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

    .hero-section h1,
    .page-header h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }
}