/* Reset & 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.7;
    color: #2c3e50;
    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: #1e40af;
}

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

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e40af;
}

.logo:hover {
    color: #2563eb;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.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: 5px;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    display: inline-block;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

/* Editorial Content Structure */
.editorial-content {
    max-width: 100%;
}

.hero-editorial {
    padding: 60px 20px 40px;
}

.hero-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 40px;
}

.hero-image {
    max-width: 900px;
    margin: 50px auto;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

figcaption {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 12px;
    font-style: italic;
    text-align: center;
}

/* Content Blocks */
.content-block {
    padding: 60px 20px;
}

.content-block.alternate-bg {
    background-color: #f9fafb;
}

.narrow-column {
    max-width: 700px;
    margin: 0 auto;
}

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

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

h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.inline-cta {
    background-color: #eff6ff;
    border-left: 4px solid #2563eb;
    padding: 25px 30px;
    margin: 40px 0;
    border-radius: 4px;
}

.inline-cta p {
    margin-bottom: 15px;
}

.text-link {
    color: #2563eb;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.text-link:hover {
    border-bottom-color: #2563eb;
}

/* Quote Block */
.quote-block {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: 500;
    color: #1e3a8a;
    font-style: italic;
    text-align: center;
}

cite {
    display: block;
    margin-top: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    font-style: normal;
    color: #3b82f6;
}

/* Inline Image */
.inline-image {
    max-width: 800px;
    margin: 50px auto;
}

.inline-image img {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Steps List */
.steps-list {
    margin-top: 40px;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 45px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 10px;
}

.step-content p {
    color: #4b5563;
}

/* Highlight Box */
.highlight-box {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 25px 30px;
    margin: 40px 0;
    border-radius: 4px;
}

.highlight-box p {
    margin-bottom: 0;
    color: #78350f;
}

/* Testimonials */
.testimonial-section {
    padding: 60px 20px;
    background-color: #f9fafb;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: #1a202c;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.95rem;
}

/* CTA Block */
.cta-block {
    padding: 70px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
}

.cta-block h2 {
    color: #ffffff;
}

.cta-block p {
    color: #e0e7ff;
}

/* Data Section */
.data-section {
    padding: 60px 20px;
}

.data-list {
    list-style: none;
    margin-top: 30px;
}

.data-list li {
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1.05rem;
}

.data-list li:last-child {
    border-bottom: none;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    color: #1e40af;
    margin-bottom: 15px;
}

.feature-card p {
    color: #4b5563;
    font-size: 1rem;
}

/* Audience List */
.audience-list {
    margin-top: 40px;
}

.audience-item {
    padding: 30px;
    background-color: #f9fafb;
    border-radius: 8px;
    margin-bottom: 25px;
}

.audience-item h4 {
    color: #1e40af;
}

.audience-item p {
    color: #4b5563;
    margin-bottom: 0;
}

/* Pricing Section */
.pricing-reveal {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
    color: #4b5563;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 3px solid #2563eb;
}

.badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.6rem;
    color: #1a202c;
    margin-bottom: 8px;
}

.pricing-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: #4b5563;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-submit,
.btn-select {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

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

.btn-select,
.btn-submit,
.btn-select-service {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    width: 100%;
}

.btn-select:hover,
.btn-submit:hover,
.btn-select-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-primary-large {
    font-size: 1.15rem;
    padding: 16px 40px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    border-radius: 6px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Forms */
.form-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-form {
    max-width: 100%;
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

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

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

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

/* Final CTA */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    color: #ffffff;
}

.final-cta p {
    color: #cbd5e1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    max-width: 1200px;
    margin: 0 auto;
    color: #9ca3af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    margin-bottom: 0;
    color: #e5e7eb;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

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

.btn-cookie.accept {
    background-color: #10b981;
    color: #ffffff;
}

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

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

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

.cookie-link {
    color: #93c5fd;
    text-decoration: underline;
}

/* Page Content (for non-editorial pages) */
.page-content {
    min-height: 70vh;
}

.page-hero {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 20px;
}

.page-hero .lead {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 60px 20px;
}

/* Values/Services Grid */
.values-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.value-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    color: #1e40af;
    margin-bottom: 15px;
}

.value-card p {
    color: #4b5563;
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    padding: 80px 20px;
}

.team-list {
    margin-top: 40px;
}

.team-member {
    padding: 30px;
    background-color: #f9fafb;
    border-radius: 8px;
    margin-bottom: 25px;
}

.team-member h3 {
    color: #1a202c;
    margin-bottom: 8px;
}

.team-member p {
    margin-bottom: 10px;
}

.team-member p:last-child {
    margin-bottom: 0;
}

/* Results Section */
.results-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.results-list {
    list-style: none;
    margin-top: 30px;
}

.results-list li {
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1.05rem;
}

.results-list li:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 25px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #4b5563;
}

.cta-section .btn-primary,
.cta-section .btn-secondary {
    margin: 0 10px 10px;
}

.small-text {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 20px;
}

/* Services Page */
.services-intro {
    padding: 60px 20px;
}

.services-list {
    padding: 40px 20px 80px;
}

.service-card-full {
    max-width: 1000px;
    margin: 0 auto 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 45px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.featured-service {
    border: 3px solid #2563eb;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 45px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header {
    margin-bottom: 25px;
}

.service-header h2 {
    margin-bottom: 10px;
}

.service-category {
    color: #6b7280;
    font-size: 1rem;
    font-style: italic;
}

.service-description {
    margin-bottom: 30px;
}

.service-description ul {
    list-style: none;
    margin-top: 15px;
}

.service-description li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #4b5563;
}

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

.service-pricing {
    border-top: 2px solid #e5e7eb;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.price-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 5px;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0;
}

.btn-select-service {
    flex-grow: 1;
    max-width: 300px;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

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

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

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    padding: 30px 0;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: #1a202c;
    margin-bottom: 15px;
}

.faq-item p {
    color: #4b5563;
    margin-bottom: 0;
}

/* Contact Page */
.contact-section {
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    color: #1e40af;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-item p {
    color: #4b5563;
    margin-bottom: 0;
}

.contact-note {
    background-color: #eff6ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.contact-form-wrapper h2 {
    margin-bottom: 15px;
}

.form-redirect-note {
    background-color: #fef3c7;
    padding: 15px;
    border-radius: 6px;
    margin-top: 25px;
    font-size: 0.95rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 20px;
}

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

.thanks-content {
    padding: 60px 20px;
}

.steps-timeline {
    margin-top: 40px;
}

.timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

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

.timeline-content h3 {
    margin-bottom: 10px;
}

.timeline-content p {
    color: #4b5563;
    margin-bottom: 0;
}

.info-box {
    background-color: #eff6ff;
    padding: 30px;
    border-radius: 8px;
    margin-top: 50px;
    border-left: 4px solid #2563eb;
}

.info-box h3 {
    color: #1e40af;
    margin-bottom: 20px;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    padding: 10px 0;
    color: #4b5563;
}

.while-waiting {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.tip-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tip-card h4 {
    color: #1e40af;
    margin-bottom: 12px;
}

.tip-card p {
    color: #4b5563;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Legal Pages */
.legal-page {
    padding: 60px 20px;
    background-color: #ffffff;
}

.legal-page h1 {
    margin-bottom: 15px;
}

.update-date {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #374151;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-section li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.rodo-item {
    background-color: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #2563eb;
}

.rodo-item h3 {
    margin-top: 0;
}

.cookie-type {
    background-color: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.cookie-type h3 {
    margin-top: 0;
    color: #1e40af;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-select-service {
        max-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cookie-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cookie {
        width: 100%;
    }

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

    .sticky-btn {
        display: block;
        width: 100%;
        text-align: center;
    }

    blockquote {
        font-size: 1.3rem;
    }

    .step-item {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }

    .price {
        font-size: 2rem;
    }

    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}