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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2ecc71;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-position: inside;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

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

.btn-cookie.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 999;
}

.mobile-nav a {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-weight: 500;
}

.mobile-nav.active {
    display: flex;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2c3e50;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.85), rgba(46, 204, 113, 0.65));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--bg-white);
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

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

.info-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

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

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

.card-body {
    padding: 28px;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.card-body p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.trust-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 1.2;
}

.trust-text h2 {
    font-size: 2.25rem;
    margin-bottom: 28px;
    color: var(--primary-color);
    line-height: 1.3;
}

.trust-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.trust-visual {
    flex: 1;
}

.trust-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
    background-color: var(--bg-light);
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

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

.service-card:hover {
    box-shadow: var(--shadow-lg);
}

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

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #144067;
}

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

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.form-intro p {
    color: var(--text-light);
}

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

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

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

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

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

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.btn-submit {
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

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

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

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

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

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

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

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.footer-main {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 32px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

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

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
    background-color: var(--bg-light);
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
}

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

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

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

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

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

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.methodology-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.methodology-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.method-text {
    flex: 1.2;
}

.method-step {
    margin-bottom: 36px;
}

.method-step h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.method-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.method-visual {
    flex: 1;
}

.method-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
    background-color: var(--bg-light);
}

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

.expertise-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.expertise-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.expertise-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.expertise-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.expertise-card h3 {
    font-size: 1.4rem;
    margin: 20px 24px 12px;
    color: var(--primary-color);
}

.expertise-card p {
    padding: 0 24px 24px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.cta-content {
    color: var(--bg-white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

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

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

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

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

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

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

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 28px 0 16px;
    color: var(--text-dark);
}

.service-detail-content ul {
    margin-bottom: 28px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.service-detail-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
    background-color: var(--bg-light);
}

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

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

.note-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.note-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info-section {
    padding: 60px 0;
}

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

.contact-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.contact-card h2 {
    font-size: 2rem;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.contact-detail {
    margin-bottom: 28px;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-detail p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-note {
    margin-top: 28px;
    padding: 16px;
    background-color: rgba(26, 84, 144, 0.1);
    border-left: 4px solid var(--primary-color);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.contact-additional {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.additional-info {
    max-width: 900px;
    margin: 0 auto;
}

.additional-info h2 {
    font-size: 2.25rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-item {
    background-color: var(--bg-white);
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

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

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    color: var(--bg-white);
}

.cta-box h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    opacity: 0.95;
}

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

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.thanks-next-steps {
    margin: 48px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 32px;
    color: var(--primary-color);
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

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

.step-text p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.thanks-note {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: left;
}

.thanks-note p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

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

.legal-intro {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

.legal-content ul {
    margin: 16px 0 16px 24px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

    .hamburger {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.05rem;
    }

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

    .trust-layout,
    .about-layout,
    .methodology-layout {
        flex-direction: column;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

    .thanks-content {
        padding: 40px 24px;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

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