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

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

.main-nav {
    background-color: #1a1a2e;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    font-weight: 500;
}

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

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

.cta-button {
    display: inline-block;
    background-color: #4a9eff;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    text-align: center;
    width: fit-content;
}

.cta-button:hover {
    background-color: #3385e6;
    transform: translateY(-2px);
}

.intro-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.intro-section p {
    font-size: 18px;
    color: #555;
}

.visual-break {
    height: 500px;
    background-color: #d1d8dd;
    overflow: hidden;
}

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

.services-preview {
    padding: 6rem 2rem;
    background-color: #fff;
}

.services-preview h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 4rem;
    color: #1a1a2e;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 200px;
    overflow: hidden;
    background-color: #e8ecef;
}

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

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

.service-card p {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    color: #555;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #0f3460;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.select-service {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 12px 24px;
    margin: 0 1.5rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.form-section {
    background: linear-gradient(135deg, #e8ecef 0%, #f8f9fa 100%);
    padding: 6rem 2rem;
}

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

.form-section > .container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 3rem;
    color: #555;
}

.contact-form {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-button {
    background-color: #0f3460;
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-button:hover {
    background-color: #16213e;
    transform: translateY(-2px);
}

.trust-section {
    padding: 6rem 2rem;
    background-color: #fff;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.trust-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text p {
    font-size: 18px;
    margin-bottom: 1.5rem;
    color: #555;
}

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

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

.info-section {
    background-color: #fff5e6;
    padding: 3rem 2rem;
    border-left: 4px solid #ff9800;
}

.info-section h2 {
    font-size: 24px;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.info-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a1a2e;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

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

.footer-column h3 {
    margin-bottom: 1rem;
    font-size: 20px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 16px;
    color: #4a9eff;
}

.footer-column p {
    color: #ccc;
    font-size: 14px;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    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;
    margin: 0;
    font-size: 14px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cookie-accept {
    background-color: #28a745;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.cookie-reject {
    background-color: #6c757d;
    color: #fff;
}

.cookie-reject:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.page-header {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.content-section {
    padding: 6rem 2rem;
    background-color: #fff;
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 32px;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.content-text p {
    font-size: 18px;
    margin-bottom: 1.5rem;
    color: #555;
}

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

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

.values-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #4a9eff;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.value-card p {
    color: #555;
}

.team-section {
    padding: 6rem 2rem;
    background-color: #fff;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.team-section p {
    font-size: 18px;
    margin-bottom: 2rem;
    color: #555;
}

.team-image {
    width: 100%;
    height: 500px;
    background-color: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-section {
    padding: 4rem 2rem;
    background-color: #e8f4f8;
}

.approach-section h2 {
    font-size: 28px;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.approach-section p {
    font-size: 18px;
    color: #555;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: #fff;
}

.service-detail {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

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

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

.service-detail-content p {
    font-size: 18px;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-detail-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

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

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

.price-box {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    width: fit-content;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #0f3460;
}

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-info-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.contact-layout {
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1.5;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 0.5rem;
    color: #0f3460;
}

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

.contact-item .note {
    font-style: italic;
    font-size: 14px;
    margin-top: 0.5rem;
    color: #777;
}

.contact-image {
    flex: 1;
    background-color: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
    height: 600px;
}

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

.map-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.map-section p {
    font-size: 18px;
    margin-bottom: 2rem;
    color: #555;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inquiry-section {
    padding: 5rem 2rem;
    background-color: #fff;
    text-align: center;
}

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

.inquiry-section p {
    font-size: 18px;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
    background-color: #f8f9fa;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

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

.thanks-message p {
    font-size: 18px;
    color: #555;
    margin-bottom: 1rem;
}

.next-steps {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

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

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    font-size: 16px;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.secondary-button {
    display: inline-block;
    background-color: #6c757d;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.secondary-button:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.additional-info {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

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

.additional-info p {
    font-size: 16px;
    color: #555;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.legal-content {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0f3460;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
}

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

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

.legal-content li {
    font-size: 16px;
    color: #555;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #4a9eff;
    text-decoration: none;
}

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

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

    .hero-content {
        padding: 3rem 2rem;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .service-card {
        width: 100%;
    }

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

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

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

    .contact-layout {
        flex-direction: column;
    }

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

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