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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.main-nav a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    padding: 4rem 4rem 4rem 6rem;
    background-color: #f8f9fa;
}

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

.hero-left p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 540px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.trust-strip {
    padding: 2rem 2rem;
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.split-content {
    display: flex;
    align-items: center;
    min-height: 600px;
}

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

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

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

.content-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.content-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.link-arrow {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
}

.link-arrow:hover {
    text-decoration: underline;
}

.services-grid {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 1.4rem);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    min-width: 320px;
}

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

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

.service-card p {
    padding: 0 1.5rem 1rem 1.5rem;
    color: #4a5568;
    flex-grow: 1;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    padding: 0 1.5rem 1rem 1.5rem;
}

.btn-select {
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 0.9rem 1.5rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

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

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

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

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

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    color: #495057;
}

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

.btn-submit:hover {
    background-color: #229954;
}

.testimonials-split {
    display: flex;
}

.testimonial-content {
    flex: 1;
    padding: 4rem;
    background-color: #ecf0f1;
}

.testimonial-content:nth-child(2) {
    background-color: #d5dbdb;
}

.testimonial-content blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2c3e50;
}

.testimonial-content cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: #34495e;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem 2rem;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    color: #bdc3c7;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

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

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

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.page-hero-split {
    display: flex;
    min-height: 500px;
    align-items: center;
}

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

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

.page-hero-simple p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.process-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.step-block {
    flex: 1;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

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

.step-block p {
    color: #4a5568;
    line-height: 1.6;
}

.services-detailed {
    padding: 4rem 2rem;
}

.service-row {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #2c3e50;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-pricing {
    margin-bottom: 2rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    display: block;
}

.price-note {
    font-size: 0.95rem;
    color: #6c757d;
    display: block;
    margin-top: 0.3rem;
}

.cta-banner {
    padding: 5rem 2rem;
    background-color: #3498db;
    text-align: center;
    color: #ffffff;
}

.cta-banner h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-banner .cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-banner .cta-primary:hover {
    background-color: #ecf0f1;
}

.contact-split {
    display: flex;
    min-height: 500px;
    margin: 4rem 2rem;
    gap: 3rem;
}

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

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

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.info-block p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-details {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.location-details h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
}

.location-details p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: center;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.selected-service-display {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-weight: 600;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.legal-page {
    padding: 4rem 2rem;
}

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

.updated-date {
    color: #6c757d;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-page p {
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.legal-page li {
    margin-bottom: 0.8rem;
    color: #4a5568;
    line-height: 1.6;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2980b9;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-content,
    .page-hero-split,
    .testimonials-split,
    .contact-split,
    .service-row {
        flex-direction: column;
    }

    .split-content.reverse,
    .service-row.reverse {
        flex-direction: column;
    }

    .hero-left,
    .content-text,
    .service-detail-content {
        padding: 3rem 2rem;
    }

    .footer-content,
    .process-steps {
        flex-direction: column;
    }

    .grid-3col {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}