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

.header {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    background: #f5f5f5;
    border-radius: 4px;
}

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

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

.nav a:hover {
    color: #2c3e50;
}

.hero-section {
    position: relative;
    height: 75vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    padding: 3rem;
    max-width: 700px;
    margin: 0 2rem;
    border-radius: 2px;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

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

.cta-primary:hover {
    background: #1a252f;
}

.intro-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.container-fluid {
    max-width: 100%;
    padding: 0 2rem;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.feature-section {
    padding: 6rem 2rem;
}

.bg-light {
    background: #f8f9fa;
}

.bg-dark {
    background: #2c3e50;
    color: #ffffff;
}

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-item {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    background-color: #e0e0e0;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.services-preview {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-image {
    width: 320px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    background-color: #e0e0e0;
}

.service-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.service-info p {
    margin-bottom: 1rem;
    color: #555;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-top: auto;
    margin-bottom: 1rem;
}

.btn-select {
    padding: 0.8rem 1.8rem;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background: #1a252f;
}

.form-section {
    padding: 6rem 2rem;
}

.form-heading {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.form-subtext {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.9);
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 2px;
    font-size: 1rem;
    background: rgba(255,255,255,0.95);
    color: #2c3e50;
}

.form-group textarea {
    resize: vertical;
}

.service-display {
    padding: 1rem;
    background: rgba(255,255,255,0.95);
    border-radius: 2px;
    color: #2c3e50;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #ffffff;
    color: #2c3e50;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #f0f0f0;
}

.trust-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

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

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

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

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

.footer-column p {
    color: #aaa;
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-accept {
    background: #2c3e50;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #1a252f;
}

.cookie-reject {
    background: #e8e8e8;
    color: #555;
}

.cookie-reject:hover {
    background: #d0d0d0;
}

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

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

.page-subtitle {
    font-size: 1.3rem;
    color: #555;
}

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

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

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

.service-detail-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    background-color: #e0e0e0;
}

.service-detail-content {
    flex: 1;
}

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

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

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

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #555;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
}

.price-label {
    font-size: 1rem;
    color: #888;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: background 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-cta:hover {
    background: #1a252f;
}

.about-content {
    padding: 4rem 2rem;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.about-image-section {
    padding: 0;
}

.about-image {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.about-values {
    padding: 5rem 2rem;
}

.about-values h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    line-height: 1.7;
    color: #555;
}

.about-process {
    padding: 5rem 2rem;
}

.about-process h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    min-width: 80px;
}

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

.step-content p {
    line-height: 1.7;
    color: #555;
}

.about-team {
    padding: 5rem 2rem;
}

.about-team h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-cta {
    padding: 5rem 2rem;
    text-align: center;
}

.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.contact-section {
    padding: 4rem 2rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.contact-info > p {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #555;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-item p {
    line-height: 1.6;
    color: #555;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 2px;
}

.contact-note p {
    line-height: 1.7;
    color: #555;
}

.contact-image {
    flex: 1;
}

.contact-visual {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    background-color: #e0e0e0;
}

.contact-map {
    padding: 5rem 2rem;
}

.contact-map h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.map-description {
    text-align: center;
    margin-bottom: 3rem;
    color: #555;
}

.map-placeholder {
    max-width: 900px;
    margin: 0 auto;
    height: 400px;
    background: #e8e8e8;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #888;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

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

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
}

.service-confirmation {
    margin: 3rem 0;
}

.selected-service-display {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 2px;
    max-width: 600px;
    margin: 0 auto;
}

.selected-service-display h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #888;
}

.service-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.service-price-display {
    font-size: 1.5rem;
    font-weight: 600;
    color: #555;
}

.thanks-next-steps {
    max-width: 700px;
    margin: 3rem auto;
    text-align: left;
}

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

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    color: #555;
}

.thanks-next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: background 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #1a252f;
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: #ffffff;
}

.legal-content {
    padding: 4rem 2rem;
    min-height: 60vh;
}

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

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #555;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-content a {
    color: #2c3e50;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1a252f;
}

@media (max-width: 1024px) {
    .feature-item,
    .feature-item.reverse,
    .service-detail-card,
    .service-detail-card.reverse,
    .contact-layout {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
        height: 250px;
    }

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

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        width: 100%;
        justify-content: space-around;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .feature-image,
    .service-detail-image {
        height: 300px;
    }

    .process-step {
        flex-direction: column;
    }

    .step-number {
        min-width: auto;
    }

    .thanks-actions {
        flex-direction: column;
    }

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

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

@media (max-width: 480px) {
    .header-container {
        padding: 1rem;
    }

    .nav {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-overlay {
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}