* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5282;
    --secondary-color: #4a90e2;
    --accent-color: #e67e22;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.ad-disclosure {
    background-color: #fffbeb;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #fde68a;
}

.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

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

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: var(--text-dark);
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.cta-button.secondary:hover {
    background-color: var(--accent-color);
    color: white;
}

.cta-button.primary {
    background-color: var(--accent-color);
    color: white;
}

.intro-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.intro-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.services-preview {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 48px;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.card-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.card-action {
    width: 100%;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.card-action:hover {
    background-color: var(--secondary-color);
    transform: scale(1.02);
}

.insight-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.insight-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.insight-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.insight-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 48px;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.testimonial-card p {
    font-size: 16px;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.form-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-wrapper h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-button {
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 48px 0;
    background-color: #fef3c7;
}

.disclaimer {
    font-size: 14px;
    color: #78350f;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 64px 0 24px;
}

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

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

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    color: #cbd5e0;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-references {
    margin-bottom: 32px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-references p {
    font-size: 13px;
    color: #cbd5e0;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-references a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #cbd5e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    padding: 24px;
    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: 24px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.cookie-content a {
    color: var(--secondary-color);
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #38a169;
}

.cookie-btn.reject {
    background-color: var(--border-color);
    color: var(--text-dark);
}

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

.page-header {
    padding: 80px 0 48px;
    background-color: var(--bg-white);
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
}

.about-story {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.story-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.story-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.team-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.team-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 48px;
    text-align: center;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.team-member {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 280px;
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 16px;
    background-color: var(--bg-light);
}

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

.member-info h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.member-role {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.member-info p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.approach-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.approach-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 48px;
    text-align: center;
}

.approach-content {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.approach-item {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.approach-item h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.approach-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.values-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.values-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 48px;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.value-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.value-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.services-detail-section {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 48px;
    margin-bottom: 80px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.service-detail-image {
    flex: 1;
    min-width: 400px;
    background-color: var(--bg-light);
}

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

.service-detail-content {
    flex: 1;
    padding: 48px;
}

.service-detail-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.service-detail-content > p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 16px;
    margin-top: 24px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-detail-content ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-select-btn {
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-select-btn:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.contact-info-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.contact-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border-radius: 50%;
    color: var(--secondary-color);
}

.contact-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-detail {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
}

.contact-details-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.details-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 48px;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 24px;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 48px;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.faq-item {
    flex: 1 1 calc(50% - 24px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-section {
    padding: 120px 0;
    background-color: var(--bg-white);
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d1fae5;
    border-radius: 50%;
    color: var(--success-color);
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-info {
    margin: 24px 0;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.next-steps-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.next-steps-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 48px;
    text-align: center;
}

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

.step-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.step-card .step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.step-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-page {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.updated-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 48px;
}

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

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.cookies-table thead {
    background-color: var(--bg-light);
}

.cookies-table th,
.cookies-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    color: var(--text-light);
}

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-content p {
        font-size: 16px;
    }

    .cards-grid,
    .testimonials-grid,
    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

    .service-card,
    .testimonial-card,
    .value-card,
    .faq-item {
        flex: 1 1 100%;
    }

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

    .service-detail-image {
        min-width: 100%;
        height: 300px;
    }

    .service-detail-content {
        padding: 32px 24px;
    }

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

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .form-wrapper {
        padding: 32px 24px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }
}