
/* Reset and Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: radial-gradient(circle, #0A2E48, #000);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    padding: 20px;
}

*, ::before, ::after {
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Futura', sans-serif;
    font-weight: bold;
    color: #fff;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1em;
    font-size: 1rem;
    color: #eee;
}

a {
    color: #6A1B9A;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Layout & Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section {
    margin-bottom: 60px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-section {
    background: linear-gradient(135deg, #0A2E48 0%, #6A1B9A 100%);
    padding: 80px 40px;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 80px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    max-width: 80px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(106, 27, 154, 0.7);
    border: 2px solid #6A1B9A;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-description {
    color: #ccc;
}

.example-data-section {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.example-data-title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.example-list {
    list-style: none;
    padding-left: 0;
}

.example-list li {
    margin-bottom: 15px;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.article-section {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-section h2 {
    border-bottom: 2px solid #6A1B9A;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

pre {
    background-color: rgba(0, 0, 0, 0.8);
    color: #f8f8f2;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.4;
    tab-size: 4;
    white-space: pre-wrap;
    word-wrap: break-word;
}

code {
    font-family: monospace, monospace;
}

pre code {
    padding: 0;
    background-color: transparent;
    color: inherit;
    font-size: inherit;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    text-align: left;
}

th {
    background-color: rgba(255, 255, 255, 0.08);
    font-weight: bold;
}

ul {
    padding-left: 20px;
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.5em;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
    color: #aaa;
    font-size: 0.9em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 15px;
    }

    .section {
        padding: 30px;
        margin-bottom: 50px;
    }

    .hero-section {
        padding: 60px 30px;
        margin-bottom: 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .service-item {
        padding: 20px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .example-data-section, .article-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .section, .example-data-section, .article-section {
        padding: 20px;
    }

    .hero-section {
        padding: 40px 20px;
        margin-bottom: 40px;
    }

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

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    .section, .example-data-section, .article-section {
        padding: 15px;
    }

    .hero-section {
        padding: 30px 15px;
        margin-bottom: 30px;
    }

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

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

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

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

