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

.hidden {
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666666;
    padding: 0.25rem 0.75rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

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

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

.hero-lead {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

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

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

.cta-primary:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.split-reverse {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.split-image {
    flex: 1;
    background-color: #d8d8d8;
}

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

.split-text {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
}

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

.services-text {
    flex: 1.2;
}

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

.services-text p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.service-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-list strong {
    color: #2c2c2c;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    border: 2px solid #2c2c2c;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.services-visual {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: #f9f9f9;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #1a1a1a;
}

.service-card .price {
    padding: 0 1.5rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #4a90e2;
}

.full-width-dark {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

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

.full-width-dark h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.full-width-dark p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #d8d8d8;
}

.full-width-dark a {
    color: #4a90e2;
    text-decoration: none;
    border-bottom: 1px solid #4a90e2;
}

.full-width-dark a:hover {
    color: #6ba8eb;
    border-color: #6ba8eb;
}

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

.testimonial-block {
    flex: 1;
    padding: 3rem 2.5rem;
    background-color: #f5f5f5;
    border-left: 4px solid #4a90e2;
}

.testimonial-block blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.testimonial-block cite {
    font-size: 1rem;
    font-style: normal;
    color: #666666;
}

.cta-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto 6rem;
    background-color: #f0f4f8;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.cta-content p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-form-wrapper {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #2c2c2c;
    margin-bottom: -0.7rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

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

.references-section {
    background-color: #f9f9f9;
    padding: 3rem 2rem;
}

.references-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.references-list {
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.references-list a {
    color: #4a90e2;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    background-color: #fff8e1;
    padding: 2.5rem 2rem;
    border-top: 2px solid #ffc107;
    border-bottom: 2px solid #ffc107;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #5a5a5a;
    text-align: center;
}

.main-footer {
    background-color: #2c2c2c;
    color: #d8d8d8;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #d8d8d8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.services-page-hero {
    background-color: #f0f4f8;
    padding: 5rem 2rem;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-page-hero p {
    font-size: 1.25rem;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    display: flex;
    gap: 2rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

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

.service-item-image {
    flex: 0.8;
    background-color: #e8e8e8;
}

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

.service-item-content {
    flex: 1.2;
    padding: 3rem;
}

.service-item-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-item-content .price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

.service-item-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 1rem;
}

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

.service-item-content ul li {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.about-hero {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem;
}

.about-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #d8d8d8;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

.about-split-left {
    flex: 1;
    padding: 3rem;
}

.about-split-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-split-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1.2rem;
}

.about-split-right {
    flex: 1;
    background-color: #d8d8d8;
}

.about-split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.contact-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 3rem;
    margin-bottom: 3rem;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1rem;
}

.contact-info strong {
    color: #2c2c2c;
}

.thanks-page {
    max-width: 900px;
    margin: 5rem auto;
    padding: 5rem 2rem;
    text-align: center;
    background-color: #f0f4f8;
}

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

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

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

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

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

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: #3a3a3a;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

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

.legal-page ul li {
    margin-bottom: 0.6rem;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .hero-split,
    .split-reverse,
    .services-split,
    .testimonial-split,
    .cta-split,
    .about-split {
        flex-direction: column;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

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

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

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

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

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