/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Container Styles */
.container-mag {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.container-wide {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.container-legal {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header and Navigation */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.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;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: #6b7280;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #4b5563;
}

/* Hero Magazine Style */
.hero-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-main {
    flex: 2 1 600px;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
    color: #ffffff;
    padding: 3rem 2rem;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.1rem;
    opacity: 0.95;
}

.hero-sidebar {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.sidebar-card.dark {
    background-color: #1f2937;
    color: #ffffff;
    border-color: #374151;
}

.sidebar-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.link-arrow {
    color: #2563eb;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

/* Magazine Grid and Layout */
.intro-split {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.column-left {
    flex: 1.5 1 400px;
    padding-right: 3rem;
}

.column-right {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: #4b5563;
    font-size: 0.95rem;
}

/* Problem Section */
.problem-section {
    padding: 4rem 2rem;
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
}

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

.mag-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.mag-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e5e7eb;
    line-height: 1;
    margin-bottom: 1rem;
}

.mag-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

/* Solution Visual */
.solution-visual {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.solution-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.solution-text {
    flex: 1 1 450px;
}

.solution-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.solution-text p {
    margin-bottom: 1.25rem;
    color: #4b5563;
    font-size: 1.05rem;
}

.solution-image {
    flex: 1 1 400px;
}

.solution-image img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials-inline {
    padding: 4rem 2rem;
    background-color: #1f2937;
    color: #ffffff;
}

.testimonials-inline h2 {
    color: #ffffff;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background-color: #374151;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #60a5fa;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    color: #9ca3af;
    font-size: 0.95rem;
}

/* Services Section */
.services-magazine {
    padding: 5rem 2rem;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-card.featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.service-card.premium {
    border-color: #d97706;
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.service-label {
    position: absolute;
    top: -12px;
    left: 1.5rem;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.service-label.premium {
    background-color: #d97706;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.btn-service {
    width: 100%;
    padding: 1rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.btn-service:hover {
    background-color: #1d4ed8;
}

/* Urgency Banner */
.urgency-banner {
    background-color: #fef3c7;
    padding: 3rem 2rem;
}

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

.urgency-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #92400e;
}

.urgency-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #78350f;
}

.btn-urgency {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #d97706;
    color: #ffffff;
    font-weight: 700;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-urgency:hover {
    background-color: #b45309;
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

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

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

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1d4ed8;
}

/* Trust Badges */
.trust-badges {
    padding: 3rem 2rem;
    background-color: #1f2937;
}

.badges-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.badge {
    text-align: center;
    color: #ffffff;
}

.badge h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.badge p {
    font-size: 1rem;
    color: #d1d5db;
}

/* Final CTA */
.final-cta {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.btn-final {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #ffffff;
    color: #1e40af;
    font-weight: 700;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Footer */
.main-footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-col a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #60a5fa;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #6b7280;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: #d97706;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 700;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #6b7280;
    color: #ffffff;
    font-weight: 700;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: #4b5563;
}

/* Page Hero */
.page-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero .lead {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page */
.about-story {
    padding: 5rem 2rem;
}

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

.story-text {
    flex: 1 1 450px;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.story-text p {
    margin-bottom: 1.25rem;
    color: #4b5563;
    font-size: 1.05rem;
}

.story-image {
    flex: 1 1 400px;
}

.story-image img {
    border-radius: 8px;
}

.mission-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.mission-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

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

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

/* Team Section */
.team-section {
    padding: 5rem 2rem;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.team-member {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    text-align: center;
}

.member-photo {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-list {
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.value-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e5e7eb;
    flex-shrink: 0;
}

.value-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.value-content p {
    color: #6b7280;
}

/* Stats About */
.stats-about {
    padding: 4rem 2rem;
}

.stats-about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.stats-grid-about {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-card {
    flex: 1 1 200px;
    text-align: center;
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.stat-big {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #6b7280;
}

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

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Services Detail Page */
.services-detail {
    padding: 3rem 2rem;
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 3rem;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-card.premium-card {
    border-color: #d97706;
}

.service-detail-header {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    padding: 2.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.premium-card .service-detail-header {
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.service-badge {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
}

.service-detail-body {
    padding: 2.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-detail-body h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

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

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    flex: 1 1 calc(25% - 2rem);
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: #6b7280;
}

.guarantee-section {
    padding: 4rem 2rem;
}

.guarantee-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ecfdf5;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #10b981;
    text-align: center;
}

.guarantee-box p {
    font-size: 1.15rem;
    color: #065f46;
    margin-bottom: 1rem;
}

.guarantee-note {
    font-size: 0.95rem;
    font-style: italic;
    color: #047857;
}

/* Contact Page */
.contact-content {
    padding: 3rem 2rem;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-side {
    flex: 1 1 350px;
}

.contact-info-side h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2563eb;
}

.info-block p {
    color: #4b5563;
    line-height: 1.7;
}

.info-block a {
    color: #2563eb;
    font-weight: 600;
}

.contact-form-side {
    flex: 1 1 500px;
}

.contact-form-side h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

.map-section {
    padding: 4rem 2rem;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9fafb;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.map-placeholder p {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 2rem;
    text-align: center;
}

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

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

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.thanks-info {
    background-color: #f9fafb;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-text p {
    color: #6b7280;
}

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

.selected-service-box {
    background-color: #eff6ff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.selected-service-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1e40af;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

.thanks-extra {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.thanks-extra h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.extra-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.extra-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.extra-card p {
    color: #6b7280;
}

.thanks-contact {
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.thanks-contact p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.contact-email {
    font-size: 1.5rem;
}

.contact-email a {
    color: #2563eb;
    font-weight: 700;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

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

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

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

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

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

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

.legal-page li {
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.7;
}

.rodo-section {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #2563eb;
}

.right-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookie-table th {
    background-color: #f9fafb;
    font-weight: 700;
    color: #1f2937;
}

.cookie-table td {
    color: #4b5563;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border-top: 1px solid #e5e7eb;
        padding: 1rem;
        gap: 0;
    }

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

    .nav-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid #f3f4f6;
    }

    .hamburger {
        display: flex;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .section-title-center {
        font-size: 1.8rem;
    }

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

    .page-hero .lead {
        font-size: 1.1rem;
    }

    .column-left {
        padding-right: 0;
    }

    .mag-card {
        flex: 1 1 100%;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .team-member {
        flex: 1 1 calc(50% - 2rem);
    }

    .faq-item {
        flex: 1 1 100%;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 1.5rem;
    }

    .section-title-center {
        font-size: 1.5rem;
    }

    .service-price {
        font-size: 1.6rem;
    }

    .price-large {
        font-size: 2rem;
    }
}
