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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.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: 700;
    color: #212529;
    text-decoration: none;
}

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

.nav-links a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #212529;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #6c757d;
    padding: 0.3rem 0.7rem;
    background-color: #f8f9fa;
    border-radius: 3px;
    border: 1px solid #dee2e6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #212529;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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: 2rem;
}

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

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

.btn-accept, .btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

.btn-accept:hover {
    background-color: #f8f9fa;
}

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

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

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 37, 41, 0.85), rgba(73, 80, 87, 0.75));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 3rem 2rem;
}

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

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #212529;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.btn-primary-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

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

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

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

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

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

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

.intro-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-section p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #495057;
}

.services-preview {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.section-header-left {
    margin-bottom: 3rem;
}

.section-header-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-left p {
    font-size: 1.1rem;
    color: #6c757d;
}

.services-grid-stacked {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-full {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    border-radius: 8px;
}

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

.service-card-split {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.service-card-compact {
    display: flex;
    gap: 2rem;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.service-image-container {
    flex: 1;
    min-width: 300px;
    background-color: #dee2e6;
    border-radius: 6px;
    overflow: hidden;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-info p {
    margin-bottom: 1.5rem;
    color: #495057;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    background-color: #e9ecef;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #495057;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #212529;
}

.btn-select-service {
    padding: 0.8rem 1.8rem;
    background-color: #212529;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-select-service:hover {
    background-color: #343a40;
    transform: translateY(-1px);
}

.process-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.step {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #212529;
}

.step-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step p {
    color: #495057;
}

.benefits-section {
    padding: 6rem 0;
    background-color: #e9ecef;
}

.benefits-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.benefits-image {
    flex: 1;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.benefits-image img {
    width: 100%;
    height: auto;
    display: block;
}

.benefits-content {
    flex: 1;
}

.benefits-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 2rem;
}

.benefits-list strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #212529;
}

.benefits-list p {
    color: #495057;
    line-height: 1.7;
}

.testimonials-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.testimonials-section h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.testimonials-inline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

blockquote {
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #212529;
    font-style: italic;
}

blockquote p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #343a40;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: #6c757d;
}

.cta-section {
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.form-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #343a40;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #212529;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #343a40;
    transform: translateY(-1px);
}

.trust-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.trust-item {
    text-align: center;
}

.trust-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: #6c757d;
    font-size: 1.1rem;
}

.main-footer {
    background-color: #212529;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    color: #adb5bd;
    line-height: 1.8;
}

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

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

.footer-column ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.2s;
}

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

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

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 1rem;
}

.page-header {
    padding: 4rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    color: #6c757d;
}

.about-story {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about-story h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-story p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #495057;
    line-height: 1.8;
}

.about-image-section {
    padding: 0;
    background-color: #dee2e6;
}

.about-image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.about-values {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.about-values h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 6px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #495057;
    line-height: 1.7;
}

.about-team {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about-team h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-team p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #495057;
    line-height: 1.8;
}

.about-approach {
    padding: 5rem 0;
    background-color: #e9ecef;
}

.approach-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.approach-content p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #495057;
    line-height: 1.8;
}

.approach-image {
    flex: 1;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-commitment {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about-commitment h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-commitment p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #495057;
    line-height: 1.8;
}

.center {
    text-align: center;
}

.services-detailed {
    padding: 3rem 0;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-intro {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: #495057;
}

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

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

.pricing-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.3rem;
}

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

.price-note {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.3rem;
}

.services-cta {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.services-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-cta p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.contact-main {
    padding: 3rem 0;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-block p {
    color: #495057;
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-note {
    padding: 1.5rem;
    background-color: #f8f9fa;
}

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

.contact-reasons {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.contact-reasons h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-item {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 6px;
}

.reason-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.reason-item p {
    color: #495057;
    line-height: 1.7;
}

.contact-faq {
    padding: 5rem 0;
    background-color: #ffffff;
}

.contact-faq h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.faq-item p {
    color: #495057;
    line-height: 1.8;
}

.contact-next-steps {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.contact-next-steps h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-step .step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #212529;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.timeline-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-step p {
    color: #495057;
}

.thanks-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    min-height: 500px;
}

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

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.thanks-details {
    background-color: #e9ecef;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 3rem;
}

.thanks-next {
    margin-bottom: 3rem;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.next-step {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 6px;
}

.next-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.next-step p {
    color: #495057;
}

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

.thanks-contact {
    color: #6c757d;
}

.legal-page {
    padding: 3rem 0 5rem;
}

.legal-intro {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 1rem;
    color: #495057;
    line-height: 1.8;
}

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

.legal-page ul li {
    margin-bottom: 0.7rem;
    color: #495057;
    line-height: 1.7;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

    .service-card-full,
    .service-card-split,
    .service-card-compact {
        flex-direction: column;
    }

    .benefits-layout,
    .approach-layout,
    .contact-layout {
        flex-direction: column;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 2rem;
    }

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

    .form-row {
        flex-direction: column;
    }

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

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

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

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

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