/* Datamole Website Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #ffffff;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0d9488;
    text-decoration: none;
}

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

nav a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #0d9488;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    color: #0d9488;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero .tagline {
    font-size: 1.5rem;
    color: #475569;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #0d9488;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.cta-button:hover {
    background: #14b8a6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: white;
}

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

.section-title {
    font-size: 2.5rem;
    color: #0d9488;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    border: 1px solid #ccfbf1;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #0d9488;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
}

.contact .container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-info {
    margin: 3rem 0;
}

.contact-item {
    margin: 1.5rem 0;
    font-size: 1.2rem;
}

.contact-item strong {
    color: #0d9488;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #0d9488;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #14b8a6;
}

/* Privacy Page Styles */
.privacy-header {
    margin-top: 80px;
    padding: 4rem 2rem 3rem;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    text-align: center;
}

.privacy-header h1 {
    font-size: 3rem;
    color: #0d9488;
    margin-bottom: 0.5rem;
}

.privacy-header .updated {
    color: #64748b;
    font-size: 1rem;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.privacy-content h2 {
    color: #0d9488;
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ccfbf1;
}

.privacy-content h3 {
    color: #14b8a6;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.privacy-content p {
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.privacy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-content li {
    color: #475569;
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.privacy-content strong {
    color: #1e293b;
    font-weight: 600;
}

.contact-box {
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    border: 1px solid #ccfbf1;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

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

.intro-box {
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    border-left: 4px solid #0d9488;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

/* Footer */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 3rem 2rem 1.5rem;
    text-align: center;
}

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

footer a {
    color: #0d9488;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #14b8a6;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    font-size: 0.9rem;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.2rem;
    }

    nav ul {
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.6rem;
    }

    .privacy-content h3 {
        font-size: 1.2rem;
    }
}