/* Base Styles */
:root {
    --primary-color: #6200ea;
    --secondary-color: #03dac6;
    --accent-color: #ff6d00;
    --background-color: #121212;
    --surface-color: #1e1e1e;
    --text-color: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #2d2d2d;
    --success-color: #00c853;
    --error-color: #ff3d00;
    --warning-color: #ffab00;
    --info-color: #2196f3;
    --shadow-color: rgba(0, 0, 0, 0.5);
    --neon-glow: 0 0 10px rgba(98, 0, 234, 0.8), 0 0 20px rgba(98, 0, 234, 0.6), 0 0 30px rgba(98, 0, 234, 0.4);
}

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

html {
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--surface-color);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.logo {
    float: left;
}

.logo img {
    height: 50px;
    width: auto;
}

nav {
    float: right;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
}

nav ul li a:hover, 
nav ul li a.active {
    background: rgba(98, 0, 234, 0.2);
    color: var(--secondary-color);
}

/* Clearfix */
header::after {
    content: "";
    display: table;
    clear: both;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(to right, #1a1a1a, #2a2a2a);
    margin-bottom: 60px;
}

.hero-content {
    width: 50%;
    float: left;
}

.hero-image {
    width: 45%;
    float: right;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-color);
    text-shadow: 0 2px 5px var(--shadow-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(98, 0, 234, 0.3);
}

.cta-button:hover {
    background-color: #7c4dff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(98, 0, 234, 0.4);
    color: var(--text-color);
}

/* Neon Button */
.neon-button {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--neon-glow);
    text-shadow: 0 0 5px var(--primary-color);
}

.neon-button:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
    box-shadow: 0 0 15px rgba(98, 0, 234, 0.9), 0 0 30px rgba(98, 0, 234, 0.7), 0 0 45px rgba(98, 0, 234, 0.5);
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: var(--surface-color);
    margin-bottom: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

.feature-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature-card {
    width: 30%;
    background-color: #272727;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

/* Recent Posts Section */
.recent-posts {
    padding: 60px 0;
    margin-bottom: 60px;
}

.recent-posts h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

.post-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.post-card {
    width: 31%;
    background-color: var(--surface-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-color);
    margin-bottom: 30px;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.post-content {
    padding: 20px;
}

.post-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

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

.read-more {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
}

.read-more::after {
    content: "→";
    margin-left: 5px;
    transition: all 0.3s ease;
}

.read-more:hover::after {
    margin-left: 10px;
}

.center {
    text-align: center;
    margin-top: 30px;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(to right, #2a2a2a, #1a1a1a);
    text-align: center;
    border-radius: 10px;
    margin-bottom: 60px;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
    background-color: #333;
    color: var(--text-color);
    outline: none;
}

.newsletter-form button {
    padding: 15px 30px;
    border: none;
    border-radius: 0 30px 30px 0;
    background-color: var(--primary-color);
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #7c4dff;
}

/* Footer */
footer {
    background-color: var(--surface-color);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    width: 25%;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 15px;
}

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

.footer-links {
    width: 20%;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

.footer-links ul li a {
    color: var(--text-secondary);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-contact {
    width: 30%;
}

.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
}

.social-icons a {
    display: inline-block;
    margin-left: 15px;
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Page Header */
.page-header {
    background: linear-gradient(to right, #1a1a1a, #2a2a2a);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Page Styles */
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-card {
    display: flex;
    background-color: var(--surface-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.blog-image {
    width: 40%;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    width: 60%;
    padding: 30px;
}

.blog-meta {
    display: flex;
    margin-bottom: 15px;
}

.blog-meta span {
    margin-right: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Blog Post Styles */
.blog-post-container {
    display: flex;
    margin-bottom: 60px;
}

.blog-post {
    width: 70%;
    padding-right: 40px;
}

.blog-sidebar {
    width: 30%;
}

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

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.post-meta i {
    margin-right: 5px;
}

.post-featured-image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

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

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

.post-content h4 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: var(--text-color);
}

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

.post-content ul, 
.post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content ul li, 
.post-content ol li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.post-image-inline {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 10px;
    font-size: 0.9rem;
}

.post-conclusion {
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(98, 0, 234, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

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

.post-tags span {
    margin-right: 10px;
    color: var(--text-secondary);
}

.post-tags a {
    display: inline-block;
    margin: 5px;
    padding: 5px 15px;
    background-color: rgba(98, 0, 234, 0.1);
    border-radius: 20px;
    color: var(--secondary-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background-color: rgba(98, 0, 234, 0.2);
    transform: translateY(-2px);
}

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

.post-share span {
    margin-right: 15px;
    color: var(--text-secondary);
}

.post-share a {
    display: inline-block;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #272727;
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.post-share a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.prev-post a, 
.next-post a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #272727;
    border-radius: 30px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.prev-post a:hover, 
.next-post a:hover {
    background-color: var(--primary-color);
}

.prev-post i, 
.next-post i {
    margin: 0 5px;
}

/* Sidebar Styles */
.sidebar-widget {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.sidebar-widget ul li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

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

.sidebar-widget ul li a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.sidebar-widget ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

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

.sidebar-form input {
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #333;
    color: var(--text-color);
    font-size: 0.9rem;
}

.sidebar-form button {
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-form button:hover {
    background-color: #7c4dff;
}

/* Related Posts */
.related-posts {
    padding: 60px 0;
    background-color: var(--surface-color);
    margin-bottom: 60px;
}

.related-posts h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.related-grid {
    display: flex;
    justify-content: space-between;
}

.related-card {
    width: 31%;
    background-color: #272727;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.related-image {
    height: 180px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-card h3 {
    padding: 15px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.related-card .read-more {
    display: block;
    padding: 0 15px 15px;
    color: var(--secondary-color);
    font-weight: 500;
}

/* About Page Styles */
.about-intro {
    margin-bottom: 60px;
}

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

.about-text {
    width: 60%;
}

.about-image {
    width: 40%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

.mission {
    padding: 60px 0;
    background-color: var(--surface-color);
    margin-bottom: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.mission-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.mission-content ul {
    text-align: left;
    padding-left: 20px;
    list-style-type: disc;
}

.mission-content ul li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.team {
    margin-bottom: 60px;
}

.team h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.team-member {
    width: 23%;
    background-color: var(--surface-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    padding: 15px 15px 5px;
    font-size: 1.2rem;
    color: var(--text-color);
}

.member-role {
    padding: 0 15px 10px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.team-member p {
    padding: 0 15px 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.values {
    padding: 60px 0;
    background-color: var(--surface-color);
    margin-bottom: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.values h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.value-card {
    width: 48%;
    background-color: #272727;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.value-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

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

.cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(to right, #2a2a2a, #1a1a1a);
    border-radius: 10px;
    margin-bottom: 60px;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

/* Contact Page Styles */
.contact-section {
    margin-bottom: 60px;
}

.contact-grid {
    display: flex;
    gap: 40px;
}

.contact-info {
    width: 40%;
}

.contact-form-container {
    width: 60%;
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(98, 0, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.info-content p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.social-contact {
    margin-top: 40px;
}

.social-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.social-contact .social-icons {
    display: flex;
}

.social-contact .social-icons a {
    margin-left: 0;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #272727;
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-contact .social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: #333;
    color: var(--text-color);
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.map-section {
    margin-bottom: 60px;
}

.map-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    height: 400px;
}

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

.faq-section {
    padding: 60px 0;
    background-color: var(--surface-color);
    margin-bottom: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

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

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Policy Pages */
.policy-content {
    margin-bottom: 60px;
}

.policy-intro {
    margin-bottom: 40px;
}

.policy-intro p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.policy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.policy-section h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--text-color);
}

.policy-section h4 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: var(--text-color);
}

.policy-section p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.policy-section ul,
.policy-section ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-section ul li,
.policy-section ol li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Info Boxes */
.info-box,
.warning-box {
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.info-box {
    background-color: rgba(33, 150, 243, 0.1);
    border-left: 4px solid var(--info-color);
}

.warning-box {
    background-color: rgba(255, 61, 0, 0.1);
    border-left: 4px solid var(--error-color);
}

.info-box h4,
.warning-box h4 {
    color: var(--text-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.info-box i,
.warning-box i {
    margin-right: 10px;
}

.info-box p,
.warning-box p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Tournament Info */
.tournament-info {
    background-color: var(--surface-color);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.tournament-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.tournament-info ul {
    list-style: none;
    padding: 0;
}

.tournament-info ul li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.tournament-info ul li strong {
    color: var(--text-color);
    margin-right: 10px;
}

/* Refund Steps */
.refund-steps {
    background-color: var(--surface-color);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.refund-steps h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.refund-steps ol {
    padding-left: 20px;
}

.refund-steps ol li {
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.refund-steps ol li strong {
    color: var(--text-color);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #272727;
    padding: 15px 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.cookie-content p {
    flex: 1;
    color: var(--text-secondary);
    margin-right: 20px;
    margin-bottom: 10px;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.cookie-btn.customize {
    background-color: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-color);
}

.cookie-btn.reject {
    background-color: transparent;
    color: var(--text-secondary);
}

.cookie-btn.accept:hover {
    background-color: #7c4dff;
}

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

.cookie-btn.reject:hover {
    color: var(--text-color);
}

.cookie-more-info {
    width: 100%;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 10px;
    color: var(--text-secondary);
}

/* Thank You Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: none;
}

.popup-content {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.popup-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.popup-content p {
    margin-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.close-btn {
    margin-top: 20px;
}

/* Custom Border for Images */
.custom-border {
    border: 4px solid;
    border-image: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) 1;
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* Pre Element Styling */
pre {
    background-color: #272727;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-family: monospace;
    line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content, 
    .hero-image {
        width: 100%;
        float: none;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 30px;
    }
    
    .feature-card {
        width: 48%;
    }
    
    .post-card {
        width: 48%;
    }
    
    .team-member {
        width: 48%;
    }
    
    .contact-grid, 
    .about-content {
        flex-direction: column;
    }
    
    .contact-info, 
    .contact-form-container, 
    .about-text, 
    .about-image {
        width: 100%;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .blog-post, 
    .blog-sidebar {
        width: 100%;
        padding-right: 0;
    }
    
    .blog-sidebar {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    nav ul {
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin-left: 10px;
    }
    
    nav ul li a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .feature-card, 
    .post-card, 
    .value-card {
        width: 100%;
    }
    
    .post-grid, 
    .feature-grid {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input, 
    .newsletter-form button {
        width: 100%;
        border-radius: 5px;
    }
    
    .newsletter-form input {
        margin-bottom: 10px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo, 
    .footer-links, 
    .footer-contact {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom p {
        margin-bottom: 15px;
    }
    
    .blog-card {
        flex-direction: column;
    }
    
    .blog-image, 
    .blog-content {
        width: 100%;
    }
    
    .related-grid {
        flex-direction: column;
    }
    
    .related-card {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .team-member {
        width: 100%;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 15px;
    }
}
