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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    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: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #c49563;
}

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

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

.navbar {
    background-color: #1a252f;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4a574;
    text-decoration: none;
}

.ad-label {
    font-size: 0.75rem;
    color: #95a5a6;
    padding: 0.25rem 0.75rem;
    border: 1px solid #95a5a6;
    border-radius: 3px;
}

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

.nav-menu a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left, .hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #f8f9fa;
}

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

.hero-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.cta-primary {
    display: inline-block;
    background-color: #d4a574;
    color: #1a252f;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    align-items: center;
}

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

.intro-image, .intro-content {
    flex: 1;
}

.intro-image {
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

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

.intro-content {
    padding: 4rem;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.intro-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #34495e;
}

.services-intro {
    padding: 4rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.service-block {
    display: flex;
    margin-bottom: 0;
}

.service-block.split-left {
    flex-direction: row;
}

.service-block.split-right {
    flex-direction: row-reverse;
}

.service-content, .service-visual {
    flex: 1;
}

.service-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #34495e;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: auto;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4a574;
}

.service-link {
    color: #1a252f;
    text-decoration: none;
    border-bottom: 2px solid #d4a574;
    padding-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #d4a574;
}

.service-visual {
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
}

.form-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.form-header p {
    color: #7f8c8d;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

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

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #5d6d7e;
    text-align: center;
}

.footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #d4a574;
}

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

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

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

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

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

.page-hero {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

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

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

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

.about-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: #34495e;
}

.about-visual {
    flex: 1;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 100%;
}

.values-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2rem;
    color: #1a252f;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.value-card p {
    color: #34495e;
}

.methodology-split {
    display: flex;
    align-items: center;
}

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

.method-image, .method-content {
    flex: 1;
}

.method-image {
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.method-image img {
    width: 100%;
    height: 100%;
}

.method-content {
    padding: 4rem;
}

.method-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.method-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: #34495e;
}

.cta-about {
    background-color: #1a252f;
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.cta-btn {
    display: inline-block;
    background-color: #d4a574;
    color: #1a252f;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #c49563;
    transform: translateY(-2px);
}

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

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

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

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-content h2 {
    font-size: 1.75rem;
    color: #1a252f;
}

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

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

.service-detail-content h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-detail-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.75rem;
    color: #34495e;
}

.service-cta {
    display: inline-block;
    background-color: #1a252f;
    color: #ffffff;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: #2c3e50;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.process-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.process-content {
    max-width: 1200px;
    margin: 0 auto;
}

.process-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

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

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a252f;
}

.step p {
    color: #34495e;
    font-size: 0.95rem;
}

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

.contact-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    flex: 1;
}

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

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

.info-block h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #d4a574;
}

.info-block p {
    color: #34495e;
    line-height: 1.7;
}

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

.info-note p {
    color: #5d6d7e;
    font-size: 0.95rem;
}

.contact-visual {
    flex: 1;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

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

.faq-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.faq-item p {
    color: #34495e;
    line-height: 1.7;
}

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

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.thanks-message {
    font-size: 1.15rem;
    color: #34495e;
    margin-bottom: 2rem;
}

#service-confirmation {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 3rem;
    font-weight: 500;
    color: #2c3e50;
}

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

.thanks-next p {
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.legal-page .last-updated {
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.legal-page h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-page p {
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.7;
}

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

.legal-page ul li {
    margin-bottom: 0.75rem;
    color: #34495e;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-split,
    .intro-split,
    .service-block,
    .about-split,
    .methodology-split,
    .contact-container,
    .service-detail-card {
        flex-direction: column;
    }

    .hero-left,
    .intro-content,
    .service-content,
    .about-content,
    .method-content {
        padding: 2rem;
    }

    .values-grid,
    .process-steps {
        flex-direction: column;
    }

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

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