/* Base Styles and Variables */
:root {
    --primary-color: #8A2BE2;
    --primary-light: #9932CC;
    --primary-dark: #4B0082;
    --accent-color: #FF00FF;
    --accent-light: #FF73FD;
    --dark-bg: #111;
    --dark-bg-alt: #1A1A1A;
    --text-light: #FFFFFF;
    --text-gray: #BBBBBB;
    --text-dark: #222222;
    --border-radius: 8px;
    --box-shadow: 0 4px 16px rgba(138, 43, 226, 0.25);
    --neon-shadow: 0 0 10px rgba(138, 43, 226, 0.7), 0 0 20px rgba(138, 43, 226, 0.5), 0 0 30px rgba(138, 43, 226, 0.3);
    --transition: all 0.3s ease;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

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

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

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

section {
    padding: 60px 20px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Header and Navigation */
header {
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

header h1 {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin: 0;
}

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

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

nav ul li a {
    color: var(--text-light);
    font-weight: 500;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-light);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 10px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 40px;
    background-color: var(--dark-bg-alt);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(138, 43, 226, 0.2), transparent 60%);
    z-index: 0;
}

.hero-content {
    flex: 1;
    z-index: 1;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
}

.featured-image {
    max-width: 90%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient);
    color: white;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--box-shadow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--neon-shadow);
    color: white;
}

/* Featured Posts Section */
.featured-posts {
    padding: 80px 40px;
    background-color: var(--dark-bg);
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-light);
}

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

.post-card {
    background-color: var(--dark-bg-alt);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--neon-shadow);
}

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

.post-content {
    padding: 20px;
}

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

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-light);
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

.view-all {
    display: block;
    text-align: center;
    font-weight: 600;
    color: var(--primary-light);
    margin-top: 20px;
}

.view-all:hover {
    text-decoration: underline;
}

/* Expert Interview Section */
.expert-interview {
    background-color: var(--dark-bg-alt);
    padding: 70px 40px;
    position: relative;
}

.expert-interview h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-light);
}

.interview-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.expert-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: var(--box-shadow);
}

.interview-content {
    flex: 1;
}

.interview-content h3 {
    color: var(--text-light);
    margin-bottom: 5px;
}

.interview-content h4 {
    color: var(--primary-light);
    font-weight: 400;
    margin-bottom: 20px;
}

.quote {
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    background-color: rgba(138, 43, 226, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.quote p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
}

/* User Testimonials Section */
.user-testimonials {
    padding: 70px 40px;
}

.user-testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-light);
}

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

.testimonial {
    background-color: var(--dark-bg-alt);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-shadow);
}

.testimonial-content p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding: 0 10px;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-light);
    position: absolute;
}

.testimonial-content p::before {
    left: -15px;
    top: -5px;
}

.testimonial-content p::after {
    right: -15px;
    bottom: -15px;
}

.testimonial-content h4 {
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.user-location {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    background: var(--gradient);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.2;
    z-index: 0;
}

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

.newsletter-content h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.subscribe-button {
    padding: 0 25px;
    background-color: var(--dark-bg);
    color: white;
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.subscribe-button:hover {
    background-color: var(--primary-dark);
}

/* Footer */
footer {
    background-color: var(--dark-bg-alt);
    padding: 60px 40px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.footer-logo h3 {
    color: var(--primary-light);
    margin-bottom: 5px;
}

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

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

.footer-links h3::after,
.footer-legal h3::after,
.footer-contact h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-light);
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

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

.footer-links ul li a,
.footer-legal ul li a {
    color: var(--text-gray);
    transition: var(--transition);
}

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

.footer-contact p {
    margin-bottom: 10px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
}

.icon-location,
.icon-phone,
.icon-mail {
    margin-right: 10px;
    color: var(--primary-light);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    fill: none;
    stroke: var(--text-gray);
    transition: var(--transition);
}

.social-icon:hover {
    stroke: var(--primary-light);
}

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

.copyright p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
}

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

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.accept-all {
    background-color: var(--primary-color);
    color: white;
}

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

.customize {
    background-color: transparent;
    border: 1px solid var(--text-gray);
    color: var(--text-light);
}

.customize:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.decline {
    background-color: transparent;
    color: var(--text-gray);
}

.decline:hover {
    color: var(--text-light);
}

.cookie-policy-link {
    color: var(--primary-light);
    text-decoration: underline;
    margin-left: 20px;
}

/* Blog Page Specific Styles */
.blog-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h1 {
    color: var(--primary-light);
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.blog-header p {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.blog-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 20px;
}

.search-bar {
    display: flex;
    max-width: 400px;
    width: 100%;
}

.search-bar input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background-color: var(--dark-bg-alt);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    color: var(--text-light);
}

.search-button {
    background-color: var(--primary-color);
    border: none;
    padding: 0 15px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    color: white;
}

.filter-categories {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-categories span {
    color: var(--text-gray);
    margin-right: 10px;
}

.category-btn {
    background-color: var(--dark-bg-alt);
    color: var(--text-gray);
    border: none;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--primary-dark);
    color: white;
}

.blog-posts {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.blog-post-card {
    background-color: var(--dark-bg-alt);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

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

.post-date {
    color: var(--text-gray);
}

.read-more-btn {
    display: inline-block;
    background-color: var(--primary-dark);
    color: white;
    padding: 8px 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    transition: var(--transition);
}

.read-more-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-bg-alt);
    color: var(--text-light);
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.pagination-btn.active {
    background-color: var(--primary-color);
}

.pagination-btn:hover {
    background-color: var(--primary-dark);
}

.blog-newsletter {
    margin-top: 50px;
}

/* About Us Page Specific Styles */
.about-hero {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 50px 0;
    margin-bottom: 50px;
}

.about-hero-content {
    flex: 1;
}

.about-hero-content h1 {
    color: var(--primary-light);
    margin-bottom: 20px;
}

.about-hero-image {
    flex: 1;
}

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

.our-mission {
    padding: 70px 0;
    background-color: var(--dark-bg-alt);
    margin-bottom: 70px;
}

.mission-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.mission-content {
    flex: 2;
}

.mission-content h2 {
    color: var(--primary-light);
    margin-bottom: 25px;
}

.mission-content ul {
    list-style-position: inside;
    margin-top: 20px;
}

.mission-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.mission-content ul li::before {
    content: '•';
    color: var(--primary-light);
    position: absolute;
    left: 0;
}

.mission-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-content: start;
}

.stat-item {
    background-color: rgba(138, 43, 226, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-light);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.team-section {
    padding: 50px 0 70px;
    text-align: center;
}

.team-section h2 {
    color: var(--primary-light);
    margin-bottom: 15px;
}

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

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

.team-member {
    background-color: var(--dark-bg-alt);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: left;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid var(--primary-color);
}

.team-member h3 {
    color: var(--primary-light);
    margin-bottom: 5px;
}

.team-member p:first-of-type {
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.values-section {
    padding: 70px 0;
    background-color: var(--dark-bg-alt);
    text-align: center;
}

.values-section h2 {
    color: var(--primary-light);
    margin-bottom: 50px;
}

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

.value-card {
    padding: 30px;
    background-color: var(--dark-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.value-icon {
    margin-bottom: 20px;
    color: var(--primary-light);
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--primary-light);
}

.partners-section {
    padding: 70px 0;
    text-align: center;
}

.partners-section h2 {
    color: var(--primary-light);
    margin-bottom: 15px;
}

.partners-section > p {
    color: var(--text-gray);
    margin-bottom: 50px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner img {
    max-width: 120px;
    max-height: 60px;
    filter: grayscale(100%) brightness(120%);
    transition: var(--transition);
}

.partner:hover img {
    filter: grayscale(0%);
}

.join-team {
    padding: 70px 0;
    background: var(--gradient);
    text-align: center;
}

.join-content {
    max-width: 700px;
    margin: 0 auto;
}

.join-content h2 {
    color: white;
    margin-bottom: 20px;
}

.join-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Contact Page Specific Styles */
.contact-hero {
    text-align: center;
    padding: 50px 0;
    margin-bottom: 50px;
    position: relative;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.contact-hero-content h1 {
    color: var(--primary-light);
    margin-bottom: 20px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 70px;
}

.contact-card {
    background-color: var(--dark-bg-alt);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.contact-icon {
    margin-bottom: 20px;
    color: var(--primary-light);
}

.contact-card h3 {
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.mini-social {
    margin: 10px 0;
}

.mini-social a {
    color: var(--primary-light);
    margin: 0 5px;
}

.contact-form-section {
    padding: 70px 0;
    background-color: var(--dark-bg-alt);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.contact-form-content {
    flex: 2;
}

.contact-form-content h2 {
    color: var(--primary-light);
    margin-bottom: 20px;
}

.contact-form {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--dark-bg);
    border: 1px solid #333;
    border-radius: var(--border-radius);
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    grid-column: 1 / -1;
}

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

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
}

.submit-button {
    background: var(--gradient);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    grid-column: 1 / -1;
    justify-self: start;
}

.submit-button:hover {
    box-shadow: var(--neon-shadow);
    transform: translateY(-3px);
}

.contact-map {
    flex: 1;
}

.contact-map h2 {
    color: var(--primary-light);
    margin-bottom: 20px;
}

.map-placeholder {
    width: 100%;
    height: 350px;
    background-color: var(--dark-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

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

.map-link {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    z-index: 2;
    transition: var(--transition);
}

.map-link:hover {
    background-color: var(--primary-light);
    color: white;
}

/* 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;
}

.modal-content {
    background-color: var(--dark-bg);
    margin: 10% auto;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 500px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-gray);
}

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

.thank-you-message {
    text-align: center;
}

.thank-you-message svg {
    margin-bottom: 20px;
}

.thank-you-message h2 {
    color: var(--primary-light);
    margin-bottom: 15px;
}

.close-btn {
    margin-top: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover {
    background-color: var(--primary-light);
}

/* FAQ Section */
.faq-section {
    padding: 70px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-light);
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    background-color: var(--dark-bg-alt);
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.faq-answer {
    background-color: rgba(138, 43, 226, 0.1);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-image {
        justify-content: center;
    }

    .interview-container {
        flex-direction: column;
        text-align: center;
    }

    .expert-image {
        margin: 0 auto 30px;
    }

    .mission-container {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

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

@media screen and (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        transform: translateY(-200%);
        transition: var(--transition);
        z-index: 100;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    }

    nav ul.show {
        transform: translateY(0);
    }

    nav ul li {
        margin: 0;
    }

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

    .post-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .cookie-policy-link {
        margin-left: 0;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .featured-posts,
    .expert-interview,
    .user-testimonials {
        padding: 50px 20px;
    }

    .newsletter {
        padding: 40px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }

    .subscribe-button {
        border-radius: var(--border-radius);
        padding: 12px;
    }
}
