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

:root {
    --blue: #2563eb;
    --blue-hover: #1d4ed8;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-900: #111827;
    --radius: 0.5rem;
    --currentColor:var(--blue);
}

svg {
    stroke: #2563eb !important;
}

/* Icon color fix */
i[data-lucide] {
    color: var(--blue) !important;
}

/* Specific icon overrides for different contexts */
.contact-info i[data-lucide],
.value i[data-lucide],
.feature i[data-lucide],
.card-header i[data-lucide],
.section-header i[data-lucide] {
    color: var(--blue) !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #111827;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1 { font-size: 2.5rem; font-weight: 700; line-height: 1.2; }
h2 { font-size: 2rem; font-weight: 600; line-height: 1.3; }
h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.4; }
h4 { font-size: 1.125rem; font-weight: 600; line-height: 1.4; }
p { font-size: 1rem; font-weight: 400; line-height: 1.6; color: var(--gray-600); }

/* Buttons */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
}

.btn-primary:hover {
    background: var(--blue-hover);
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #030213;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav button {
    background: none;
    color: var(--gray-600);
    font-weight: 500;
    padding: 0.5rem 0;
}

.nav button:hover {
    color: #030213;
}

.menu-btn {
    display: none;
    background: none;
    padding: 0.5rem;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    color: var(--gray-600);
    font-size: 1rem;
}

.back-btn:hover {
    color: #111827;
}

/* Hero */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    text-align: center;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.text-blue {
    color: var(--blue);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.feature i {
    width: 20px;
    height: 20px;
    color: var(--blue) !important;
}

/* Sections */
.services, .about, .contact {
    padding: 5rem 0;
    background: var(--gray-50);
}

.team {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Cards */
.card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.card-header i {
    width: 32px;
    height: 32px;
    color: var(--blue) !important;
}

.card-header h3 {
    color: var(--gray-900);
}

.card p {
    margin-bottom: 1rem;
}

.card ul {
    list-style: none;
    padding: 0;
}

.card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.card li i {
    width: 16px;
    height: 16px;
    color: var(--blue) !important;
}

/* Team CTA */
.team-cta {
    text-align: center;
    margin-top: 3rem;
}

.team-cta p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h3,
.about-values h3 {
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.about-text p {
    margin-bottom: 1rem;
}

.values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.value i {
    width: 24px;
    height: 24px;
    color: var(--blue) !important;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.value h4 {
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.value p {
    font-size: 0.875rem;
}

/* Contact */
.contact-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info i {
    width: 24px;
    height: 24px;
    color: var(--blue) !important;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-info h4 {
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.contact-info a {
    color: var(--gray-900);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    color: var(--blue);
}

.contact-info p {
    font-size: 0.875rem;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: var(--gray-400);
    margin-bottom: 1rem;
}

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

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

.footer-section a,
.footer-section button {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 0;
}

.footer-section a:hover,
.footer-section button:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-bottom button {
    color: var(--gray-400);
    background: none;
    border: none;
    font-size: 0.875rem;
    cursor: pointer;
}

.footer-bottom button:hover {
    color: white;
}

/* Privacy Page */
.privacy-main {
    padding: 6rem 0 3rem;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-header h1 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.privacy-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.section-header {
    /* display: flex; */
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.section-header i {
    width: 24px;
    height: 24px;
    color: var(--blue) !important;
}

.section-header h2 {
    color: var(--gray-900);
}

.section-content {
    padding: 1.5rem;
}

.content-block {
    margin-bottom: 1.5rem;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h3 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.content-block h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.content-block p {
    margin-bottom: 1rem;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-block li {
    margin-bottom: 0.25rem;
    color: var(--gray-600);
}

.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-type {
    padding: 1rem;
    background: var(--gray-50);
    border-radius: calc(var(--radius) - 2px);
}

.privacy-footer {
    text-align: center;
    margin-top: 3rem;
}

.privacy-footer p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-cards {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .services, .team, .about, .contact {
        padding: 3rem 0;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .privacy-main {
        padding: 5rem 0 2rem;
    }
    
    .section-header,
    .section-content {
        padding: 1rem;
    }
}