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

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

.cookie-banner.active {
    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;
    margin: 0;
    min-width: 300px;
}

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

.btn-accept, .btn-reject {
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

.nav-ad-label {
    font-size: 13px;
    color: #6b7280;
    background-color: #f3f4f6;
    padding: 6px 14px;
    border-radius: 4px;
}

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

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

.nav-menu a:hover {
    color: #2563eb;
}

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 32px;
}

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

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

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

.cta-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37,99,235,0.3);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

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

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

.intro-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.services-section {
    padding: 100px 40px;
    background-color: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-header p {
    font-size: 18px;
    color: #6b7280;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    width: calc(50% - 16px);
    max-width: 500px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

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

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    padding: 0 24px 12px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

.service-card .price {
    padding: 0 24px 12px;
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
}

.btn-service {
    margin: 12px 24px 24px;
    padding: 14px 28px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    background-color: #f9fafb;
}

.form-content {
    flex: 1;
    padding: 60px 60px;
}

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

.form-content > p {
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.service-display {
    background-color: #dbeafe;
    padding: 16px;
    border-radius: 6px;
    color: #1e40af;
    font-weight: 600;
    display: none;
}

.service-display.active {
    display: block;
}

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

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

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

.form-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.trust-section {
    padding: 100px 40px;
    background-color: #1f2937;
    color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

.trust-content {
    display: flex;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #60a5fa;
    font-weight: 600;
}

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

.footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 60px 40px 24px;
}

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

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

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #60a5fa;
}

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

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
    max-width: 800px;
    margin: 16px auto 0;
}

.thanks-container {
    max-width: 800px;
    margin: 120px auto;
    padding: 60px;
    background-color: #f9fafb;
    border-radius: 8px;
    text-align: center;
}

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

.thanks-container p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-container .selected-service {
    background-color: #dbeafe;
    padding: 20px;
    border-radius: 6px;
    color: #1e40af;
    font-weight: 600;
    font-size: 19px;
    margin: 24px 0;
}

.about-hero {
    background-color: #f9fafb;
    padding: 100px 40px;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 800;
}

.about-hero p {
    font-size: 20px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-section {
    margin-bottom: 60px;
}

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

.about-section p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 17px;
    color: #374151;
}

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

.contact-container h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 32px;
    font-weight: 700;
}

.contact-info {
    background-color: #f9fafb;
    padding: 48px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 600;
}

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

.contact-item h3 {
    font-size: 18px;
    color: #374151;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

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

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

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

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

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

.legal-container ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-container ul li {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .form-split {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

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

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