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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-logo i {
    font-size: 2rem;
}

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

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.gradient-text {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

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

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

.btn-secondary:hover {
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 0.875rem;
    color: #4a5568;
    font-weight: 500;
}

/* App Screenshot */
.app-screenshot {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.app-image {
    width: auto;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for app screenshot */
@media (max-width: 768px) {
    .app-image {
        max-width: 80%;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .app-image {
        max-width: 90%;
        border-radius: 12px;
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #dbeafe;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
}

.feature-badge-upcoming {
    display: inline-block;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2em 0.7em;
    border-radius: 999px;
    margin-left: 0.5em;
    letter-spacing: 0.05em;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(96, 165, 250, 0.15);
    position: relative;
    top: -2px;
}

/* Analytics Section */
.analytics {
    padding: 6rem 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.analytics-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.analytics-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.analytics-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
}

.time-selector {
    display: flex;
    gap: 0.5rem;
}

.time-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #dbeafe;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.time-btn.active,
.time-btn:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.chart-container {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.chart-placeholder {
    display: flex;
    align-items: end;
    gap: 1rem;
    height: 200px;
    margin-bottom: 1rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    transition: all 0.3s ease;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #4a5568;
}

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

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.stat-content {
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

.stat-label {
    font-size: 0.875rem;
    color: #4a5568;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #4a5568;
}

.contact-form {
    background: #eff6ff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #dbeafe;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: #60a5fa;
}

.footer-section p {
    color: #dbeafe;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #1d4ed8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #dbeafe;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

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

/* Privacy Policy Page Styles */
.privacy-policy {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 500;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.privacy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-section ul li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.privacy-section strong {
    color: #1a202c;
    font-weight: 600;
}

.contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .analytics-grid {
        gap: 2rem;
    }
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(37, 99, 235, 0.1);
        padding: 2rem 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-item {
        margin: 1rem 0;
    }

    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 1rem;
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 3rem auto;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 2rem;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat {
        min-width: 120px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .analytics-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .analytics-card {
        padding: 1.5rem;
    }

    .analytics-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .time-selector {
        width: 100%;
        justify-content: space-between;
    }

    .time-btn {
        flex: 1;
        text-align: center;
    }

    .chart-container {
        height: 250px;
    }

    .chart-placeholder {
        height: 150px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }



    .container {
        padding: 0 1rem;
    }

    .section-header {
        padding: 0 1rem;
    }

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

    .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        padding: 0 0.5rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

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

    .section-header p {
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat {
        min-width: auto;
    }

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



    .feature-card {
        padding: 1.2rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .analytics-card {
        padding: 1.2rem;
    }

    .analytics-header h3 {
        font-size: 1.1rem;
    }

    .time-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .chart-container {
        height: 200px;
    }

    .chart-placeholder {
        height: 120px;
        gap: 0.5rem;
    }

    .chart-labels {
        font-size: 0.75rem;
    }

    .stat-card {
        padding: 1.2rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .stat-value {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .contact-form {
        padding: 1.2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-details h4 {
        font-size: 1rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }

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

    .nav-logo {
        font-size: 1.3rem;
    }

    .nav-logo i {
        font-size: 1.7rem;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-logo i {
        font-size: 1.7rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

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



    .feature-card {
        padding: 1rem;
    }

    .analytics-card {
        padding: 1rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-container {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        margin-bottom: 2rem;
    }


}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {


    .feature-card,
    .analytics-card,
    .stat-card {
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.06);
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero {
        transform: none !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background: #1a202c;
        color: #e2e8f0;
    }

    .navbar {
        background: rgba(26, 32, 44, 0.95);
    }

    .nav-link {
        color: #e2e8f0;
    }

    .nav-link:hover {
        color: #60a5fa;
    }

    .hero {
        background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    }

    .hero-title {
        color: #f7fafc;
    }

    .hero-description {
        color: #cbd5e0;
    }

    .btn-secondary {
        background: #2d3748;
        color: #60a5fa;
        border-color: #4a5568;
    }

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

    .feature-card,
    .analytics-card,
    .stat-card {
        background: #2d3748;
        border-color: #4a5568;
    }

    .feature-card h3,
    .analytics-header h3,
    .stat-value {
        color: #f7fafc;
    }

    .feature-card p,
    .stat-label {
        color: #cbd5e0;
    }

    .contact-form {
        background: #2d3748;
        border-color: #4a5568;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        background: #4a5568;
        border-color: #718096;
        color: #f7fafc;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #60a5fa;
        box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
    }

    .footer {
        background: #1a202c;
    }

    .footer-section p,
    .footer-section ul li a {
        color: #a0aec0;
    }

    .footer-section ul li a:hover {
        color: #60a5fa;
    }

    .social-links a {
        background: #4a5568;
    }

    .social-links a:hover {
        background: #60a5fa;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.analytics-card,
.stat-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; } 

.not-another-tracker {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: #fff;
    padding: 60px 0 50px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}
.not-another-content {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.not-another-icon {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    filter: drop-shadow(0 4px 16px rgba(96, 165, 250,0.25));
}
.not-another-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}
.not-another-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}
.not-another-body {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.98;
}
@media (max-width: 768px) {
    .not-another-title {
        font-size: 2rem;
    }
    .not-another-content {
        padding: 0 10px;
    }
} 

/* Dark mode support for privacy policy */
@media (prefers-color-scheme: dark) {
    .privacy-policy {
        background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    }
    
    .privacy-header h1 {
        color: #f7fafc;
    }
    
    .privacy-content {
        background: #2d3748;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .privacy-section h2 {
        color: #f7fafc;
        border-bottom-color: #4a5568;
    }
    
    .privacy-section p,
    .privacy-section ul li {
        color: #e2e8f0;
    }
    
    .privacy-section strong {
        color: #f7fafc;
    }
    
    .contact-info {
        background: #4a5568;
    }
}

/* Responsive design for privacy policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 0 60px;
    }
    
    .privacy-header h1 {
        font-size: 2.5rem;
    }
    
    .privacy-content {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.6rem;
    }
    
    .privacy-section p,
    .privacy-section ul li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .privacy-section h2 {
        font-size: 1.4rem;
    }
    
    .privacy-section {
        margin-bottom: 30px;
    }
} 

/* Development Dashboard Styles */
.development-dashboard {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 60px;
}

.dashboard-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-header p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.dashboard-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

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

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.filter-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

/* Filter functionality */
.feature-card.hidden {
    display: none !important;
}

.feature-card.visible {
    display: block !important;
}

/* Ensure filter buttons are clickable */
.filter-btn {
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none;
}

.filter-btn:active {
    transform: scale(0.95);
}

/* Development Board */
.development-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #e2e8f0;
}

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

.feature-card.in-progress {
    border-left-color: #f59e0b;
}

.feature-card.completed {
    border-left-color: #10b981;
}

.feature-card.planned {
    border-left-color: #6b7280;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
}

.feature-status.in-progress {
    background: #fef3c7;
    color: #d97706;
}

.feature-status.completed {
    background: #d1fae5;
    color: #059669;
}

.feature-status.planned {
    background: #f3f4f6;
    color: #6b7280;
}

.feature-priority {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
}

.feature-priority.high {
    background: #fee2e2;
    color: #dc2626;
}

.feature-priority.medium {
    background: #fef3c7;
    color: #d97706;
}

.feature-priority.low {
    background: #dbeafe;
    color: #2563eb;
}

.feature-priority.completed {
    background: #d1fae5;
    color: #059669;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Progress Bar */
.feature-progress {
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.feature-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #64748b;
}

.eta {
    font-weight: 600;
}

.assignee {
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
}

/* Timeline Section */
.timeline-section {
    margin-top: 4rem;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #e2e8f0;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-marker.completed {
    background: #10b981;
    box-shadow: 0 0 0 4px #d1fae5;
}

.timeline-marker.current {
    background: #f59e0b;
    box-shadow: 0 0 0 4px #fef3c7;
}

.timeline-marker.future {
    background: #6b7280;
    box-shadow: 0 0 0 4px #f3f4f6;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    flex: 1;
    max-width: 300px;
}

.timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Dark mode support for development dashboard */
@media (prefers-color-scheme: dark) {
    .development-dashboard {
        background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    }
    
    .dashboard-header h1 {
        color: #f7fafc;
    }
    
    .dashboard-header p {
        color: #a0aec0;
    }
    
    .stat-number {
        color: #63b3ed;
    }
    
    .stat-label {
        color: #a0aec0;
    }
    
    .filter-btn {
        background: #2d3748;
        border-color: #4a5568;
        color: #a0aec0;
    }
    
    .filter-btn:hover {
        border-color: #63b3ed;
        color: #63b3ed;
    }
    
    .filter-btn.active {
        background: #63b3ed;
        color: #1a202c;
        border-color: #63b3ed;
    }
    
    .feature-card {
        background: #2d3748;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
    
    .feature-card:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
    
    .feature-card h3 {
        color: #f7fafc;
    }
    
    .feature-card p {
        color: #a0aec0;
    }
    
    .progress-bar {
        background: #4a5568;
    }
    
    .progress-text {
        color: #a0aec0;
    }
    
    .feature-meta {
        color: #a0aec0;
    }
    
    .assignee {
        background: #4a5568;
    }
    
    .timeline-section h2 {
        color: #f7fafc;
    }
    
    .timeline::before {
        background: #4a5568;
    }
    
    .timeline-content {
        background: #2d3748;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .timeline-content h3 {
        color: #f7fafc;
    }
    
    .timeline-content p {
        color: #a0aec0;
    }
}

/* Responsive design for development dashboard */
@media (max-width: 768px) {
    .development-dashboard {
        padding: 100px 0 60px;
    }
    
    .dashboard-header h1 {
        font-size: 2.5rem;
    }
    
    .dashboard-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .filter-tabs {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .development-board {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 20px;
    }
    
    .timeline-content {
        margin-left: 2rem;
        margin-right: 0;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .dashboard-header h1 {
        font-size: 2rem;
    }
    
    .dashboard-header p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content {
        padding: 1rem;
        margin-left: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1rem;
    }
} 