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

:root {
    --primary: #1a5f7a;
    --primary-dark: #134a5f;
    --secondary: #57c5b6;
    --accent: #159895;
    --dark: #1a2f36;
    --light: #f8fafa;
    --white: #ffffff;
    --text: #2c3e50;
    --text-light: #5a6c7d;
    --border: #e1e8ed;
    --shadow: rgba(26, 95, 122, 0.1);
}

html {
    scroll-behavior: smooth;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

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

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

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo svg {
    width: 36px;
    height: 36px;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

/* Sections */
section {
    padding: 80px 20px;
}

section:nth-child(even) {
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px var(--shadow);
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.card h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px var(--shadow);
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    border-left: 4px solid var(--accent);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 15px var(--shadow);
}

.feature-item svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Stats */
.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.stat-item {
    text-align: center;
    min-width: 180px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Testimonials */
.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 5rem;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

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

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
}

.quote-section blockquote {
    font-size: 1.8rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

.quote-section cite {
    font-size: 1rem;
    opacity: 0.8;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    color: var(--dark);
    margin-bottom: 12px;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

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

/* Two Column */
.two-column {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.two-column > div {
    flex: 1;
    min-width: 300px;
}

.two-column h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.two-column p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.two-column ul {
    list-style: none;
    margin: 20px 0;
}

.two-column li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text);
}

.two-column li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.6;
}

/* Highlight Panel */
.highlight-panel {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: 16px;
    padding: 50px;
    color: var(--dark);
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.highlight-panel h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.highlight-panel p {
    opacity: 0.9;
}

.highlight-panel > div {
    flex: 1;
    min-width: 280px;
}

/* Industries */
.industries {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.industry-tag {
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 2px 10px var(--shadow);
    font-weight: 500;
    color: var(--dark);
    transition: all 0.3s ease;
}

.industry-tag:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-block {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.contact-block h3 {
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-block svg {
    width: 28px;
    height: 28px;
}

.contact-block p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-block a {
    color: var(--primary);
    font-weight: 500;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    border-top: 4px solid var(--accent);
}

.value-item svg {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.value-item h3 {
    color: var(--dark);
    margin-bottom: 12px;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--secondary);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 15px var(--shadow);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 30px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.timeline-year {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.timeline-item h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.timeline-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Team */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar svg {
    width: 50px;
    height: 50px;
    fill: var(--white);
}

.team-member h3 {
    color: var(--dark);
    margin-bottom: 5px;
}

.team-member .role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Comparison Table */
.comparison {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

.comparison th,
.comparison td {
    padding: 18px 20px;
    text-align: left;
}

.comparison th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.comparison tr:nth-child(even) {
    background: var(--light);
}

.comparison td:first-child {
    font-weight: 500;
    color: var(--dark);
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 100px;
}

.legal-content h1 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.4rem;
    color: var(--dark);
    margin: 35px 0 15px;
}

.legal-content h3 {
    font-size: 1.15rem;
    color: var(--dark);
    margin: 25px 0 12px;
}

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

.legal-content ul {
    margin: 15px 0 15px 25px;
    color: var(--text);
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

/* Thank You Page */
.thank-you {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thank-you-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--white);
}

.thank-you h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.thank-you p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    opacity: 0.9;
}

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

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

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

.cookie-accept {
    background: var(--secondary);
    color: var(--dark);
}

.cookie-accept:hover {
    background: var(--accent);
    color: var(--white);
}

.cookie-settings {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-settings:hover {
    border-color: var(--white);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h2 {
    font-size: 1.3rem;
    color: var(--dark);
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.cookie-modal-close:hover {
    color: var(--dark);
}

.cookie-modal-body {
    padding: 30px;
}

.cookie-modal-body p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.cookie-option {
    padding: 20px;
    background: var(--light);
    border-radius: 10px;
    margin-bottom: 15px;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-option h3 {
    font-size: 1.05rem;
    color: var(--dark);
}

.cookie-option p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border);
    border-radius: 28px;
    transition: 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--accent);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Tips Section */
.tips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tip-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

.tip-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 25px;
    color: var(--white);
}

.tip-number {
    font-size: 2.5rem;
    font-weight: 700;
    opacity: 0.5;
    line-height: 1;
}

.tip-header h3 {
    font-size: 1.15rem;
    margin-top: 10px;
}

.tip-card p {
    padding: 25px;
    color: var(--text-light);
}

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

    nav ul {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 4px 20px var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav li {
        text-align: center;
    }

    nav a {
        display: block;
        padding: 15px 20px;
    }

    .hero {
        padding: 120px 20px 60px;
    }

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

    section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .quote-section blockquote {
        font-size: 1.3rem;
    }

    .highlight-panel {
        padding: 35px 25px;
    }

    .two-column {
        gap: 30px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

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

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .card,
    .service-card {
        min-width: 100%;
    }

    .legal-content h1 {
        font-size: 1.8rem;
    }
}
