* {
    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;
}

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #1a1a2e;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

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

.hero-section {
    display: flex;
    align-items: center;
    background-color: #16213e;
    color: #fff;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    padding: 4rem;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d0d0d0;
}

.hero-image {
    flex: 1;
    background-color: #0f1419;
}

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

.cta-button {
    display: inline-block;
    background-color: #4a90e2;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #357abd;
}

.why-section {
    background-color: #f5f7fa;
    padding: 5rem 2rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.feature-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4a90e2;
}

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

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

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

.services-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    background-color: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-info {
    flex: 1;
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.service-info p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}

.price {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a90e2;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.secondary-button {
    display: inline-block;
    background-color: #fff;
    color: #4a90e2;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 2px solid #4a90e2;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.secondary-button:hover {
    background-color: #4a90e2;
    color: #fff;
}

.process-section {
    background-color: #16213e;
    color: #fff;
    padding: 5rem 0;
}

.split-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.process-visual {
    flex: 1;
    background-color: #0f1419;
}

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

.process-content {
    flex: 1;
    padding: 3rem 4rem;
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4a90e2;
    min-width: 60px;
}

.step-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-text p {
    color: #d0d0d0;
}

.testimonials-section {
    background-color: #f5f7fa;
    padding: 5rem 2rem;
}

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

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.testimonial p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    font-style: italic;
}

.author {
    font-weight: 600;
    color: #1a1a2e;
}

.contact-form-section {
    background-color: #fff;
    padding: 5rem 2rem;
}

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

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

.form-container > p {
    text-align: center;
    color: #555;
    margin-bottom: 2rem;
}

.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: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    background-color: #4a90e2;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #357abd;
}

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

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p,
.footer-col a {
    color: #d0d0d0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: #4a90e2;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

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

.cookie-content a {
    color: #4a90e2;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #4a90e2;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #357abd;
}

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-reject:hover {
    background-color: #fff;
    color: #1a1a2e;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background-color: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-card-image {
    width: 100%;
    height: 250px;
    background-color: #e0e0e0;
}

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

.service-card-content {
    padding: 2rem;
}

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

.service-card-content p {
    color: #555;
    margin-bottom: 1.5rem;
}

.service-card-content .price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.page-header {
    background-color: #16213e;
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
}

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

.page-header p {
    font-size: 1.25rem;
    color: #d0d0d0;
    max-width: 800px;
    margin: 0 auto;
}

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

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.content-section h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.content-section p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #555;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.about-intro {
    background-color: #f5f7fa;
    padding: 4rem 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background-color: #e0e0e0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

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

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4a90e2;
}

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

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

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.contact-card p {
    color: #555;
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.contact-card strong {
    color: #333;
    display: block;
    margin-bottom: 0.25rem;
}

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

.thanks-container h1 {
    font-size: 3rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-icon {
    font-size: 5rem;
    color: #4a90e2;
    margin-bottom: 2rem;
}

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

    .hero-content {
        padding: 2rem;
    }

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

    .nav-links {
        gap: 1rem;
    }

    .service-item {
        flex-direction: column !important;
    }

    .service-item img {
        width: 100%;
    }

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

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

    .features-grid {
        flex-direction: column;
    }

    .testimonials-grid {
        flex-direction: column;
    }

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