:root {
    --background-dark: #121212;
    --background-darker: #0a0a0a;
    --surface-color: #1e1e1e;
    --primary-color: #00e5ff; /* Neon turquoise */
    --primary-dark: #00b8d4;
    --primary-light: #18ffff;
    --secondary-color: #d500f9; /* Purple */
    --secondary-dark: #aa00ff;
    --secondary-light: #e040fb;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-tertiary: #757575;
    --error-color: #ff1744;
    --success-color: #00e676;
    --warning-color: #ffea00;
    --border-radius: 8px;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --transition-speed: 0.3s;
    --section-padding: 80px 0;
    --container-width: 1200px;
    --header-height: 80px;
}

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

body {
    font-family: 'Inter', 'Roboto', 'Segoe UI', Arial, sans-serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-light);
}

button {
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 4px;
    width: 60px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* Header and Navigation */
header {
    background-color: var(--background-darker);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

.logo-container h1 {
    font-size: 1.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width var(--transition-speed) ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-color);
}

.font-size-decrease {
    background-color: var(--surface-color);
    color: var(--text-primary);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 5px 10px;
    margin-left: 20px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.font-size-decrease:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--background-darker);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 20px;
    overflow: hidden;
    max-width: var(--container-width);
    margin: 0 auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 20%, rgba(213, 0, 249, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
    padding-right: 40px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 15px;
    left: 15px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    z-index: 0;
    opacity: 0.7;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.5);
    color: var(--text-primary);
}

.cta-button:hover::before {
    left: 100%;
}

/* Features Section */
.features {
    padding: var(--section-padding);
    text-align: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.feature-card {
    background-color: var(--surface-color);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: height var(--transition-speed) ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card .icon {
    margin: 0 auto 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 229, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.8rem;
}

.feature-card:nth-child(2n) .icon {
    color: var(--secondary-color);
    background-color: rgba(213, 0, 249, 0.1);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-tertiary);
}

/* Latest Posts Section */
.latest-posts {
    padding: var(--section-padding);
    max-width: var(--container-width);
    margin: 0 auto;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.post-card {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all var(--transition-speed) ease;
}

.post-card:hover .post-image {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    transition: color var(--transition-speed) ease;
}

.post-card:hover h3 {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.read-more {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all var(--transition-speed) ease;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform var(--transition-speed) ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover::after {
    transform: translateX(5px);
}

.view-all-container {
    text-align: center;
    margin-top: 50px;
}

.view-all-button {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-button:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
    box-shadow: 0 0 15px var(--primary-color);
}

/* Newsletter Section */
.newsletter {
    background-color: var(--surface-color);
    padding: 80px 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 20%, rgba(213, 0, 249, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    color: var(--text-primary);
    margin-bottom: 20px;
}

.newsletter-content p {
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    height: 50px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0 20px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 25px 0 0 25px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0 25px;
    border: none;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    border-radius: 0 25px 25px 0;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.newsletter-form button:hover {
    opacity: 0.9;
    transform: translateX(2px);
}

/* Footer */
footer {
    background-color: var(--background-darker);
    padding: 80px 0 20px;
    margin-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-color);
}

.footer-logo p {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.footer-links h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 30px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-tertiary);
    transition: all var(--transition-speed) ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    color: var(--text-tertiary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
    color: var(--text-secondary);
}

.social-links a:hover {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.footer-bottom p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--surface-color);
    z-index: 1000;
    display: none; /* Initially hidden */
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    border-top: 2px solid var(--primary-color);
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-content p {
    margin-bottom: 15px;
    text-align: center;
    color: var(--text-secondary);
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.cookie-button {
    padding: 8px 15px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.cookie-button.accept {
    background-color: var(--primary-color);
    color: var(--background-dark);
}

.cookie-button.customize {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.cookie-button.reject {
    background-color: transparent;
    color: var(--text-tertiary);
    border: 1px solid var(--text-tertiary);
}

.cookie-button:hover {
    transform: translateY(-2px);
}

.cookie-button.accept:hover {
    background-color: var(--primary-light);
}

.cookie-button.customize:hover {
    background-color: rgba(0, 229, 255, 0.1);
}

.cookie-button.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-more-info {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

.cookie-more-info a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Blog Page Specific Styles */
.page-header {
    background-color: var(--background-darker);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(213, 0, 249, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.blog-container {
    display: flex;
    max-width: var(--container-width);
    margin: 50px auto;
    padding: 0 20px;
    gap: 40px;
}

.blog-grid {
    flex: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.blog-card {
    display: flex;
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.blog-image {
    width: 300px;
    flex-shrink: 0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.blog-category {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-content h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    transition: all var(--transition-speed) ease;
}

.blog-card:hover h2 {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.read-more-button {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    border-radius: 20px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.read-more-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.read-more-button:hover {
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}

.read-more-button:hover::before {
    left: 100%;
}

.blog-sidebar {
    flex: 1;
}

.sidebar-widget {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    height: 3px;
    width: 40px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.sidebar-widget.categories ul li {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.sidebar-widget.categories ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-widget.categories a {
    color: var(--text-secondary);
    transition: all var(--transition-speed) ease;
}

.sidebar-widget.categories a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.sidebar-widget.categories span {
    color: var(--text-tertiary);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.popular-post {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popular-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: 15px;
}

.popular-post h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.popular-post h4 a {
    color: var(--text-secondary);
    transition: all var(--transition-speed) ease;
}

.popular-post h4 a:hover {
    color: var(--primary-color);
}

.popular-post span {
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

.sidebar-widget.newsletter p {
    margin-bottom: 20px;
    color: var(--text-tertiary);
}

.sidebar-widget.newsletter form {
    display: flex;
    flex-direction: column;
}

.sidebar-widget.newsletter input {
    padding: 10px 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.sidebar-widget.newsletter button {
    padding: 10px;
    border: none;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.sidebar-widget.newsletter button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* About Page Specific Styles */
.about-mission {
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.about-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 15px;
    left: 15px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.7;
}

.about-values {
    padding: 80px 0;
    background-color: var(--background-darker);
    position: relative;
    overflow: hidden;
}

.about-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 229, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(213, 0, 249, 0.05) 0%, transparent 50%);
}

.about-values h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.value-card {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.value-card .icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 229, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
}

.value-card:nth-child(2n) .icon {
    color: var(--secondary-color);
    background-color: rgba(213, 0, 249, 0.1);
}

.value-card h3 {
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-tertiary);
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 0 5px;
    font-size: 1.4rem;
}

.team-member p {
    padding: 0 20px;
    margin-bottom: 20px;
}

.team-member p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member .social-links {
    justify-content: center;
    margin-bottom: 20px;
}

.timeline-section {
    padding: 80px 0;
    background-color: var(--background-darker);
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 229, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(213, 0, 249, 0.05) 0%, transparent 50%);
}

.timeline-section h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

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

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    z-index: 1;
}

.timeline-date {
    position: absolute;
    top: 20px;
    left: calc(50% + 30px);
    background-color: var(--surface-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.timeline-content {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    width: calc(50% - 50px);
    margin-right: auto;
    transition: all var(--transition-speed) ease;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-item:nth-child(even) .timeline-date {
    left: auto;
    right: calc(50% + 30px);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-item:nth-child(even) .timeline-content h3 {
    color: var(--secondary-color);
}

.timeline-content p {
    color: var(--text-secondary);
}

.cta-section {
    padding: 100px 0;
    text-align: center;
    background-color: var(--surface-color);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(213, 0, 249, 0.1) 0%, transparent 50%);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    position: relative;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--background-dark);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

/* Contact Page Specific Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-method .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 229, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-tertiary);
    margin-bottom: 5px;
}

.social-contact h3 {
    margin-bottom: 15px;
}

.contact-form-container {
    background-color: var(--surface-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.contact-form-container h2 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(0, 229, 255, 0.3);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.submit-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}

.map-section {
    padding: 50px 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--background-darker);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.faq-item h3 {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.faq-item h3::before {
    content: 'Q:';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-secondary);
    position: relative;
    padding-left: 25px;
}

.faq-item p::before {
    content: 'A:';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
}

/* Success Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--surface-color);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-tertiary);
    transition: color var(--transition-speed) ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-icon {
    margin-bottom: 20px;
    color: var(--success-color);
}

.modal h2 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.modal p {
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.modal-button {
    padding: 10px 30px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}

/* Blog Post Page Specific Styles */
.blog-post-container {
    display: flex;
    max-width: var(--container-width);
    margin: 50px auto;
    padding: 0 20px;
    gap: 40px;
}

.blog-post {
    flex: 3;
}

.post-header {
    margin-bottom: 40px;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.post-date, .post-category, .post-author {
    display: flex;
    align-items: center;
}

.post-category {
    color: var(--primary-color);
    font-weight: 600;
}

.post-featured-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
}

.post-featured-image img {
    width: 100%;
}

.post-content {
    font-size: 1.05rem;
    line-height: 1.7;
}

.post-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--text-primary);
}

.post-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-primary);
}

.post-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.post-content ul, .post-content ol {
    margin: 0 0 20px 20px;
    color: var(--text-secondary);
}

.post-content li {
    margin-bottom: 10px;
}

.post-content strong {
    color: var(--primary-color);
}

.post-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-secondary);
}

.post-tags {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.post-tags span {
    font-weight: 600;
    color: var(--text-primary);
}

.post-tags a {
    background-color: rgba(0, 229, 255, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.post-share span {
    font-weight: 600;
    color: var(--text-primary);
}

.post-share a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition-speed) ease;
}

.post-share a:hover {
    transform: translateY(-3px);
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-blog {
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.back-to-blog:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.prev-post, .next-post {
    padding: 10px 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.prev-post:hover, .next-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}

.related-posts {
    background-color: var(--background-darker);
    padding: 80px 0;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.related-post-card {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.related-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
}

.related-post-card h3 a {
    color: var(--text-primary);
    transition: all var(--transition-speed) ease;
}

.related-post-card h3 a:hover {
    color: var(--primary-color);
}

.related-post-card p {
    padding: 0 20px 20px;
    color: var(--text-tertiary);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container, .header-container {
        max-width: 90%;
    }
    
    .hero {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        max-width: 100%;
    }
    
    .hero-image {
        margin: 0 auto;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        max-width: 100%;
    }
    
    .timeline-date {
        width: 100px;
        text-align: center;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .blog-container, .blog-post-container {
        flex-direction: column;
    }
    
    .blog-sidebar {
        margin-top: 50px;
    }
    
    .blog-card {
        flex-direction: column;
    }
    
    .blog-image {
        width: 100%;
        height: 250px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-date {
        left: 70px;
        top: -5px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
    }
    
    .timeline-item:nth-child(even) .timeline-date {
        left: 70px;
        right: auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
    
    .logo-container {
        margin-bottom: 20px;
    }
    
    .nav-links {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .hero {
        padding: 50px 20px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .features-grid, .posts-grid, .values-grid, .team-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .post-tags, .post-share {
        justify-content: center;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
