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

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

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    border: 1px solid #333;
    border-radius: 3px;
    margin-left: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.active {
    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;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4a9eff;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3a8eef;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem 4rem 5rem;
    background-color: #0a0a0a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-left p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #c0c0c0;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

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

.cta-primary:hover {
    background-color: #3a8eef;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
}

.hero-right {
    flex: 1;
    background-color: #f5f5f5;
}

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

.approach-section {
    padding: 6rem 0;
    background-color: #fafafa;
}

.approach-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-text {
    flex: 1.2;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0a0a0a;
    font-weight: 700;
}

.approach-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
}

.approach-image {
    flex: 0.8;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-grid-section {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

.services-grid-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

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

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

.service-image {
    background-color: #e0e0e0;
    height: 220px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #0a0a0a;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0 1.5rem 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a9eff;
    margin: 0 1.5rem 1.5rem;
}

.cta-split-section {
    display: flex;
    min-height: 650px;
}

.cta-left-content {
    flex: 1;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-left-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #c0c0c0;
    max-width: 500px;
}

.cta-right-form {
    flex: 1;
    background-color: #f5f5f5;
    padding: 5rem 4rem;
    display: flex;
    align-items: center;
}

.project-form {
    width: 100%;
    max-width: 500px;
}

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

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

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

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

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

.btn-submit:hover {
    background-color: #3a8eef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.3);
}

.values-section {
    padding: 6rem 3rem;
    background-color: #0a0a0a;
    color: #ffffff;
}

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

.values-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
}

.values-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.value-item {
    flex: 1;
    max-width: 350px;
}

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

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #c0c0c0;
}

.main-footer {
    background-color: #1a1a1a;
    color: #c0c0c0;
    padding: 4rem 3rem 2rem;
}

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #0a0a0a;
    border-radius: 5px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #999;
}

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

.thanks-container {
    max-width: 700px;
    margin: 8rem auto;
    padding: 4rem 3rem;
    background-color: #fafafa;
    border-radius: 8px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-container .service-selected {
    font-weight: 600;
    color: #4a9eff;
}

.thanks-container a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #4a9eff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container a:hover {
    background-color: #3a8eef;
    transform: translateY(-2px);
}

.page-header {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 6rem 3rem 4rem;
    text-align: center;
}

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

.page-header p {
    font-size: 1.15rem;
    color: #c0c0c0;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 3rem;
}

.content-section h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: #0a0a0a;
}

.content-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
}

.content-section ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.content-section ul li {
    margin-bottom: 0.5rem;
    color: #444;
}

.contact-info-box {
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info-box h3 {
    margin-top: 0;
}

.contact-info-box p {
    margin-bottom: 0.8rem;
}

.about-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    margin: 4rem 0;
}

.about-text {
    flex: 1.5;
}

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

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

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

    .hero-left,
    .cta-left-content,
    .cta-right-form {
        padding: 3rem 2rem;
    }

    .approach-content,
    .about-split {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 1.25rem);
    }

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

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

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

    .ad-label {
        display: none;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .service-card {
        width: 100%;
    }

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