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

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

.header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.nav {
    display: flex;
    gap: 30px;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s;
}

.hero-card {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(52, 152, 219, 0.75));
    display: flex;
    align-items: center;
}

.hero-text-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    max-width: 650px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero-text-card h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-text-card p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #34495e;
}

.cta-button {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.intro-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.intro-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-card p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

.services-preview {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    width: calc(50% - 15px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-content p {
    margin-bottom: 20px;
    color: #34495e;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.card-cta {
    background: #3498db;
    color: #ffffff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.form-section {
    padding: 80px 0;
    background: #ecf0f1;
}

.form-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-card > p {
    margin-bottom: 30px;
    color: #34495e;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-button {
    background: #27ae60;
    color: #ffffff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: #229954;
}

.value-section {
    padding: 80px 0;
    background: #ffffff;
}

.value-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.disclaimer-section {
    padding: 60px 0;
    background: #fffbea;
}

.disclaimer-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #f39c12;
}

.disclaimer-card p {
    color: #34495e;
    font-size: 15px;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

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

.footer-col h4 {
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col p {
    margin-bottom: 10px;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

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

.footer-col a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.page-hero {
    background: #34495e;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-card-large {
    flex: 1;
}

.about-card-large h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-card-large p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #34495e;
}

.about-image-card {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.philosophy-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.philosophy-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.philosophy-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.philosophy-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.team-section {
    padding: 80px 0;
}

.team-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.team-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-text p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #34495e;
}

.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.process-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 220px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.process-number {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.cta-section-alt {
    padding: 80px 0;
    background: #3498db;
}

.cta-card-centered {
    text-align: center;
    color: #ffffff;
}

.cta-card-centered h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-card-centered p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button-secondary {
    display: inline-block;
    background: #ffffff;
    color: #3498db;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.price-display {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-content p {
    margin-bottom: 15px;
    font-size: 17px;
    color: #34495e;
}

.feature-list {
    list-style: none;
    margin: 25px 0;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #34495e;
}

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

.service-cta {
    background: #3498db;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.service-note {
    padding: 60px 0;
    background: #f8f9fa;
}

.note-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.note-card h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.note-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.note-item {
    flex: 1;
    min-width: 250px;
}

.note-item strong {
    color: #2c3e50;
}

.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 50px;
}

.contact-info-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-card p {
    color: #34495e;
    margin-bottom: 5px;
}

.contact-map-placeholder {
    flex: 1;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.map-text p {
    margin-bottom: 10px;
    color: #34495e;
}

.response-info {
    padding: 60px 0;
    background: #f8f9fa;
}

.response-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.response-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.response-card p {
    margin-bottom: 15px;
    font-size: 17px;
    color: #34495e;
}

.additional-info {
    padding: 60px 0;
}

.info-cards-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background: #f8f9fa;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.thanks-section {
    padding: 100px 0;
}

.thanks-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-card p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #34495e;
}

.service-message {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    color: #2c3e50;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-primary {
    background: #3498db;
    color: #ffffff;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-secondary {
    background: #95a5a6;
    color: #ffffff;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.next-steps {
    padding: 80px 0;
    background: #f8f9fa;
}

.next-steps-card {
    max-width: 1000px;
    margin: 0 auto;
}

.next-steps-card h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 220px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 45px;
    height: 45px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-item p {
    color: #34495e;
}

.legal-page {
    padding: 80px 0;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 15px 25px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #34495e;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid #e0e0e0;
        padding: 20px;
    }

    .hamburger {
        display: flex;
    }

    .hero-text-card {
        padding: 30px;
    }

    .hero-text-card h1 {
        font-size: 32px;
    }

    .service-card {
        width: 100%;
    }

    .about-grid,
    .team-content,
    .service-detail-card,
    .contact-layout {
        flex-direction: column;
    }

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

    .value-cards,
    .process-cards {
        flex-direction: column;
    }

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

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