/* Reset en basisstijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #f97316;
    --light: #f8fafc;
    --dark: #1e293b;
    --grey: #64748b;
    --grey-light: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}
/* Header */
header {
    background-color: white;
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 10;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
}
.logo span {
    color: var(--secondary);
}
.logo svg {
    margin-right: 0.5rem;
    height: 28px;
    width: 28px;
}
.nav-links {
    display: flex;
    list-style: none;
}
.nav-links li {
    margin-left: 2rem;
}
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: var(--primary);
}

/* Main content */
.page-content {
    padding: 4rem 0;
    min-height: 60vh;
}

.policy-container {
    background-color: white;
    padding: 3rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.policy-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.policy-container h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--dark);
}

.policy-container h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--dark);
}

.policy-container p {
    margin-bottom: 1rem;
    color: var(--grey);
}

.policy-container ul,
.policy-container ol {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--grey);
}

.policy-container li {
    margin-bottom: 0.5rem;
}

.policy-date {
    font-style: italic;
    color: var(--grey);
    margin-bottom: 2rem;
    display: block;
}

/* Back button */
.back-home {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 2rem;
}

.back-home svg {
    margin-right: 0.5rem;
    height: 20px;
    width: 20px;
}

.back-home:hover {
    text-decoration: underline;
}

/* Footer - updated styles */
footer {
    background-color: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-about {
    grid-column: span 1;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-links {
    grid-column: span 1;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    grid-column: span 1;
}

.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-contact address {
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

.footer-divider {
    grid-column: span 3;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

.copyright {
    grid-column: span 3;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    padding-top: 0; /* Removed padding-top */
    border-top: none; /* Removed border-top */
    margin-top: 0; /* Removed margin-top */
}

/* Update responsive styles for footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-about,
    .footer-links,
    .footer-contact,
    .footer-divider,
    .copyright {
        grid-column: span 1;
    }

    .footer-about {
        margin-bottom: 1rem;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-divider,
    .copyright {
        grid-column: span 3;
    }
}

/* Homepage-specific styles */
/* App buttons */
.app-buttons {
    display: flex;
    gap: 10px;
}
.app-button {
    display: flex;
    align-items: center;
    background-color: var(--dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.app-button:hover {
    background-color: #0f172a;
}
.app-button svg {
    margin-right: 8px;
    height: 20px;
    width: 20px;
}
.app-button span {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}
.app-button .small-text {
    font-size: 0.7rem;
    opacity: 0.9;
}
.app-button .large-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Hero section */
.hero {
    padding: 5rem 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero .container {
    display: flex;
    align-items: center;
}
.hero-content {
    width: 50%;
    z-index: 2;
}
.hero-image {
    width: 40%;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}
.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    margin-left: auto;
}
p.lead {
    font-size: 1.25rem;
    color: var(--grey);
    margin-bottom: 2rem;
}

/* Features section */
.features {
    background-color: white;
    padding: 5rem 0;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header p {
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.feature-card {
    background-color: var(--light);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}
.feature-icon svg {
    height: 30px;
    width: 30px;
    color: var(--primary);
}

/* Dashboard preview */
.dashboard-preview {
    padding: 5rem 0;
    background-color: var(--light);
}
.preview-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border-radius: 0.5rem;
    overflow: hidden;
}
.preview-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Pricing section */
.pricing {
    background-color: white;
    padding: 5rem 0;
}
.price-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--light);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    padding: 3rem;
    text-align: center;
}
.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.price-amount .currency {
    font-size: 2rem;
    margin-right: 0.5rem;
}
.price-amount .period {
    font-size: 1.25rem;
    color: var(--grey);
    font-weight: 400;
    margin-left: 0.5rem;
}
.price-features {
    list-style: none;
    margin: 2rem 0;
}
.price-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--grey-light);
}
.price-features li:last-child {
    border-bottom: none;
}

/* CTA section */
.cta {
    background-color: var(--primary);
    color: white;
    padding: 4rem 0;
    text-align: center;
}
.cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}
.cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}
.btn-light {
    background-color: white;
    color: var(--primary);
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 0.25rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Responsive styles */
@media (max-width: 768px) {
    .policy-container {
        padding: 2rem 1.5rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero .container {
        flex-direction: column;
    }
    .hero-content, .hero-image {
        width: 100%;
    }
    .hero-content {
        margin-bottom: 3rem;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .app-buttons {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    nav {
        flex-direction: column;
        gap: 1rem;
    }
}
@media (max-width: 992px) and (min-width: 769px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
    .footer-links:last-child {
        grid-column: span 3;
    }
}