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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #3b82f6;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background: #ffffff;
    color: #1f2937;
}

.main-nav {
    background: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3b82f6;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #9ca3af;
    padding: 0.4rem 0.8rem;
    background: #f3f4f6;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 3rem auto;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-left p {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3b82f6;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.intro-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.intro-content {
    display: flex;
    gap: 4rem;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #111827;
}

.intro-description {
    flex: 1;
    display: flex;
    align-items: center;
}

.intro-description p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
}

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

.section-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

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

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

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #111827;
}

.service-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 0.9rem;
    background: #111827;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #374151;
}

.contact-form-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.form-container-split {
    display: flex;
    gap: 4rem;
}

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.form-left p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
}

.form-right {
    flex: 1;
}

.service-form {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

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

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

.btn-submit:hover {
    background: #2563eb;
}

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

.technology-section {
    background: #f9fafb;
    padding: 5rem 2rem;
}

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

.tech-left {
    flex: 1;
    overflow: hidden;
}

.tech-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.tech-right {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.tech-right p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #3b82f6;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background: #3b82f6;
    color: #ffffff;
}

.main-footer {
    background: #111827;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-hero {
    text-align: center;
    max-width: 800px;
    margin: 5rem auto;
    padding: 4rem 2rem;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.thanks-hero p {
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-hero {
    background: #f9fafb;
    padding: 5rem 2rem;
}

.about-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.about-hero-left {
    flex: 1;
}

.about-hero-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #111827;
    line-height: 1.2;
}

.about-hero-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.about-hero-right p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
}

.story-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.story-split {
    display: flex;
    gap: 4rem;
}

.story-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.story-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.story-content p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-hero {
    max-width: 1400px;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #111827;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #4b5563;
}

.contact-info-split {
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

.contact-left {
    flex: 1;
    background: #f9fafb;
    padding: 3rem;
    border-radius: 8px;
}

.contact-left h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #111827;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.7;
}

.contact-right {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.contact-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #374151;
}

.legal-page p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page ul li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .hero-split,
    .tech-content-split,
    .intro-content,
    .form-container-split,
    .about-hero-content,
    .story-split,
    .contact-info-split {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-left h1,
    .thanks-hero h1,
    .about-hero-left h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

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

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