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

:root {
--purple-primary: #7b2cbf;
--purple-dark: #5a189a;
--purple-light: #9d4edd;
--purple-accent: #c77dff;
--dark-bg: #10002b;
--dark-secondary: #240046;
--text-light: #e0aaff;
--text-white: #ffffff;
--gray-light: #f0f0f0;
--gray-medium: #666666;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.7;
color: var(--text-white);
background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
min-height: 100vh;
}

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

.main-navigation {
background: rgba(36, 0, 70, 0.95);
backdrop-filter: blur(10px);
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 20px rgba(123, 44, 191, 0.3);
}

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

.logo-section {
display: flex;
align-items: center;
gap: 15px;
}

.site-logo {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
border: 2px solid var(--purple-accent);
}

.brand-name {
font-size: 26px;
font-weight: 700;
color: var(--text-white);
letter-spacing: 1px;
}

.nav-menu {
display: flex;
list-style: none;
gap: 35px;
}

.nav-menu a {
color: var(--text-light);
text-decoration: none;
font-weight: 500;
font-size: 16px;
transition: all 0.3s ease;
padding: 8px 0;
border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
color: var(--purple-accent);
border-bottom-color: var(--purple-accent);
}

.hero-section {
position: relative;
height: 550px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
overflow: hidden;
background: linear-gradient(135deg, var(--purple-dark) 0%, var(--dark-bg) 100%);
margin-bottom: 60px;
}

.hero-overlay {
position: absolute;
inset: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%239d4edd" opacity="0.1"/></svg>');
opacity: 0.15;
}

.hero-content {
position: relative;
z-index: 2;
max-width: 800px;
padding: 0 25px;
}

.hero-content h1 {
font-size: 52px;
margin-bottom: 20px;
color: var(--text-white);
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
line-height: 1.2;
}

.tagline {
font-size: 20px;
color: var(--text-light);
margin-bottom: 30px;
font-weight: 300;
}

.cta-button {
display: inline-block;
background: var(--purple-primary);
color: var(--text-white);
padding: 14px 40px;
border-radius: 30px;
text-decoration: none;
font-weight: 600;
font-size: 17px;
transition: all 0.3s ease;
box-shadow: 0 5px 20px rgba(123, 44, 191, 0.4);
}

.cta-button:hover {
background: var(--purple-light);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(157, 78, 221, 0.5);
}

.intro-section {
padding: 60px 0;
text-align: center;
}

.intro-section h2 {
font-size: 38px;
margin-bottom: 20px;
color: var(--purple-accent);
}

.intro-section p {
font-size: 18px;
max-width: 800px;
margin: 0 auto;
color: var(--text-light);
line-height: 1.8;
}

.featured-posts {
padding: 60px 0;
background: rgba(36, 0, 70, 0.3);
}

.featured-posts h2 {
text-align: center;
font-size: 38px;
margin-bottom: 50px;
color: var(--purple-accent);
}

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

.post-card {
background: rgba(16, 0, 43, 0.7);
border-radius: 15px;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid var(--purple-dark);
}

.post-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 30px rgba(123, 44, 191, 0.4);
}

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

.post-content {
padding: 25px;
}

.post-content h3 {
font-size: 23px;
margin-bottom: 12px;
color: var(--text-white);
}

.post-content p {
color: var(--text-light);
margin-bottom: 18px;
font-size: 15px;
line-height: 1.6;
}

.read-more {
display: inline-block;
color: var(--purple-accent);
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border-bottom: 2px solid transparent;
}

.read-more:hover {
color: var(--purple-light);
border-bottom-color: var(--purple-light);
}

.mistakes-section {
padding: 60px 0;
}

.mistakes-section h2 {
text-align: center;
font-size: 38px;
margin-bottom: 50px;
color: var(--purple-accent);
}

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

.mistake-item {
background: rgba(36, 0, 70, 0.5);
padding: 30px;
border-radius: 12px;
border: 1px solid var(--purple-dark);
transition: all 0.3s ease;
}

.mistake-item:hover {
background: rgba(36, 0, 70, 0.7);
border-color: var(--purple-primary);
}

.mistake-icon {
font-size: 40px;
margin-bottom: 15px;
}

.mistake-item h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--purple-accent);
}

.mistake-item p {
color: var(--text-light);
font-size: 15px;
line-height: 1.6;
}

.stats-section {
padding: 60px 0;
background: rgba(123, 44, 191, 0.1);
}

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

.stat-box {
background: rgba(16, 0, 43, 0.6);
padding: 35px;
border-radius: 12px;
border: 2px solid var(--purple-dark);
transition: all 0.3s ease;
}

.stat-box:hover {
border-color: var(--purple-primary);
transform: scale(1.05);
}

.stat-number {
display: block;
font-size: 42px;
font-weight: 700;
color: var(--purple-accent);
margin-bottom: 10px;
}

.stat-label {
display: block;
font-size: 17px;
color: var(--text-light);
font-weight: 500;
}

.site-footer {
background: var(--dark-secondary);
padding: 50px 0 20px;
margin-top: 80px;
border-top: 3px solid var(--purple-primary);
}

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

.footer-section h4 {
font-size: 20px;
margin-bottom: 18px;
color: var(--purple-accent);
}

.footer-section p,
.footer-section ul {
color: var(--text-light);
font-size: 15px;
line-height: 1.8;
}

.footer-section ul {
list-style: none;
}

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

.footer-section a {
color: var(--text-light);
text-decoration: none;
transition: color 0.3s ease;
}

.footer-section a:hover {
color: var(--purple-accent);
}

.reg-number {
font-size: 13px;
margin-top: 15px;
opacity: 0.7;
}

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

.social-icons a {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(123, 44, 191, 0.3);
border-radius: 50%;
transition: all 0.3s ease;
}

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

.footer-legal {
text-align: center;
padding-top: 30px;
border-top: 1px solid var(--purple-dark);
color: var(--text-light);
}

.legal-links {
margin-top: 15px;
display: flex;
justify-content: center;
gap: 25px;
flex-wrap: wrap;
}

.legal-links a {
color: var(--text-light);
text-decoration: none;
font-size: 14px;
transition: color 0.3s ease;
}

.legal-links a:hover {
color: var(--purple-accent);
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(16, 0, 43, 0.98);
backdrop-filter: blur(10px);
padding: 25px;
box-shadow: 0 -5px 30px rgba(123, 44, 191, 0.4);
z-index: 10000;
border-top: 2px solid var(--purple-primary);
display: none;
}

.cookie-banner.show {
display: block;
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-content h3 {
font-size: 22px;
margin-bottom: 12px;
color: var(--purple-accent);
}

.cookie-content p {
color: var(--text-light);
margin-bottom: 18px;
line-height: 1.6;
}

.cookie-buttons {
display: flex;
gap: 15px;
align-items: center;
flex-wrap: wrap;
}

.cookie-btn {
padding: 10px 28px;
border: none;
border-radius: 25px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-size: 15px;
}

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

.cookie-btn.accept:hover {
background: var(--purple-light);
}

.cookie-btn.decline {
background: transparent;
color: var(--text-light);
border: 2px solid var(--purple-dark);
}

.cookie-btn.decline:hover {
border-color: var(--purple-primary);
color: var(--purple-accent);
}

.cookie-link {
color: var(--purple-accent);
text-decoration: none;
margin-left: 10px;
}

.cookie-link:hover {
text-decoration: underline;
}

.page-header {
background: linear-gradient(135deg, var(--purple-dark) 0%, var(--dark-bg) 100%);
padding: 80px 0;
text-align: center;
margin-bottom: 50px;
}

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

.page-header .tagline {
font-size: 19px;
color: var(--text-light);
}

.blog-posts-section {
padding: 60px 0;
}

.blog-grid {
display: grid;
gap: 45px;
}

.blog-post-card {
background: rgba(36, 0, 70, 0.5);
border-radius: 15px;
overflow: hidden;
display: grid;
grid-template-columns: 400px 1fr;
border: 1px solid var(--purple-dark);
transition: all 0.3s ease;
}

.blog-post-card:hover {
border-color: var(--purple-primary);
box-shadow: 0 8px 25px rgba(123, 44, 191, 0.3);
}

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

.post-body {
padding: 30px;
display: flex;
flex-direction: column;
}

.post-category {
display: inline-block;
background: var(--purple-primary);
color: var(--text-white);
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 15px;
width: fit-content;
}

.blog-post-card h2 {
font-size: 28px;
margin-bottom: 15px;
color: var(--text-white);
}

.post-excerpt {
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.7;
flex-grow: 1;
}

.post-meta {
display: flex;
gap: 20px;
color: var(--gray-medium);
font-size: 14px;
margin-bottom: 18px;
}

.read-article-btn {
display: inline-block;
background: var(--purple-primary);
color: var(--text-white);
padding: 11px 30px;
border-radius: 25px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
width: fit-content;
}

.read-article-btn:hover {
background: var(--purple-light);
transform: translateX(5px);
}

.about-header {
background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
}

.about-story {
padding: 60px 0;
}

.story-content {
max-width: 900px;
margin: 0 auto 50px;
text-align: center;
}

.story-content h2 {
font-size: 38px;
margin-bottom: 25px;
color: var(--purple-accent);
}

.story-content p {
color: var(--text-light);
font-size: 17px;
line-height: 1.8;
margin-bottom: 20px;
}

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

.mission-box,
.vision-box {
background: rgba(36, 0, 70, 0.5);
padding: 35px;
border-radius: 12px;
border: 2px solid var(--purple-dark);
}

.mission-box h3,
.vision-box h3 {
font-size: 24px;
margin-bottom: 15px;
color: var(--purple-accent);
}

.mission-box p,
.vision-box p {
color: var(--text-light);
line-height: 1.7;
}

.team-section {
padding: 60px 0;
background: rgba(123, 44, 191, 0.05);
}

.team-section h2 {
text-align: center;
font-size: 38px;
margin-bottom: 15px;
color: var(--purple-accent);
}

.section-subtitle {
text-align: center;
color: var(--text-light);
font-size: 17px;
margin-bottom: 50px;
}

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

.team-member {
background: rgba(16, 0, 43, 0.7);
border-radius: 15px;
padding: 30px;
text-align: center;
border: 1px solid var(--purple-dark);
transition: all 0.3s ease;
}

.team-member:hover {
transform: translateY(-8px);
border-color: var(--purple-primary);
box-shadow: 0 10px 30px rgba(123, 44, 191, 0.3);
}

.team-member img {
width: 100%;
height: 400px;
object-fit: cover;
border-radius: 12px;
margin-bottom: 20px;
border: 3px solid var(--purple-dark);
}

.team-member h3 {
font-size: 22px;
margin-bottom: 8px;
color: var(--text-white);
}

.member-role {
color: var(--purple-accent);
font-weight: 600;
margin-bottom: 12px;
font-size: 15px;
}

.team-member p {
color: var(--text-light);
font-size: 14px;
line-height: 1.6;
}

.values-section {
padding: 60px 0;
}

.values-section h2 {
text-align: center;
font-size: 38px;
margin-bottom: 50px;
color: var(--purple-accent);
}

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

.value-card {
background: rgba(36, 0, 70, 0.5);
padding: 30px;
border-radius: 12px;
text-align: center;
border: 1px solid var(--purple-dark);
transition: all 0.3s ease;
}

.value-card:hover {
background: rgba(36, 0, 70, 0.7);
border-color: var(--purple-primary);
}

.value-icon {
font-size: 45px;
margin-bottom: 15px;
}

.value-card h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--purple-accent);
}

.value-card p {
color: var(--text-light);
font-size: 15px;
line-height: 1.6;
}

.contact-header {
background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple-dark) 100%);
}

.contact-section {
padding: 60px 0;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 50px;
}

.contact-info h2 {
font-size: 32px;
margin-bottom: 20px;
color: var(--purple-accent);
}

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

.info-item {
display: flex;
gap: 20px;
margin-bottom: 30px;
}

.info-icon {
font-size: 32px;
flex-shrink: 0;
}

.info-details h3 {
font-size: 18px;
margin-bottom: 8px;
color: var(--purple-accent);
}

.info-details p {
color: var(--text-light);
line-height: 1.6;
}

.info-details a {
color: var(--purple-accent);
text-decoration: none;
}

.info-details a:hover {
text-decoration: underline;
}

.contact-form-wrapper {
background: rgba(36, 0, 70, 0.5);
padding: 40px;
border-radius: 15px;
border: 1px solid var(--purple-dark);
}

.contact-form-wrapper h2 {
font-size: 28px;
margin-bottom: 25px;
color: var(--purple-accent);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 12px 16px;
background: rgba(16, 0, 43, 0.6);
border: 1px solid var(--purple-dark);
border-radius: 8px;
color: var(--text-white);
font-size: 15px;
transition: all 0.3s ease;
font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--purple-primary);
background: rgba(16, 0, 43, 0.8);
}

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

.submit-btn {
background: var(--purple-primary);
color: var(--text-white);
padding: 13px 40px;
border: none;
border-radius: 25px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.submit-btn:hover {
background: var(--purple-light);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(123, 44, 191, 0.4);
}

.modal {
display: none;
position: fixed;
z-index: 10001;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
}

.modal.show {
display: flex;
align-items: center;
justify-content: center;
}

.modal-content {
background: var(--dark-secondary);
padding: 45px;
border-radius: 15px;
text-align: center;
max-width: 450px;
border: 2px solid var(--purple-primary);
position: relative;
}

.close-modal {
position: absolute;
top: 15px;
right: 20px;
font-size: 32px;
color: var(--text-light);
cursor: pointer;
transition: color 0.3s ease;
}

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

.modal-icon {
font-size: 60px;
color: var(--purple-accent);
margin-bottom: 20px;
}

.modal-content h2 {
font-size: 30px;
margin-bottom: 15px;
color: var(--purple-accent);
}

.modal-content p {
color: var(--text-light);
margin-bottom: 25px;
line-height: 1.6;
}

.modal-btn {
background: var(--purple-primary);
color: var(--text-white);
padding: 11px 35px;
border: none;
border-radius: 25px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.modal-btn:hover {
background: var(--purple-light);
}

.article-header {
background: var(--dark-secondary);
padding: 50px 0;
text-align: center;
border-bottom: 3px solid var(--purple-primary);
}

.article-category {
display: inline-block;
background: var(--purple-primary);
color: var(--text-white);
padding: 7px 18px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 15px;
}

.article-header h1 {
font-size: 44px;
margin-bottom: 20px;
color: var(--text-white);
line-height: 1.3;
}

.article-meta {
display: flex;
gap: 25px;
justify-content: center;
color: var(--text-light);
font-size: 15px;
}

.article-featured-image {
width: 100%;
max-height: 600px;
overflow: hidden;
margin-bottom: 50px;
}

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

.article-content {
padding: 60px 0;
}

.article-content .container {
max-width: 850px;
}

.lead-paragraph {
font-size: 20px;
color: var(--text-light);
line-height: 1.8;
margin-bottom: 35px;
font-weight: 300;
}

.article-content h2 {
font-size: 32px;
margin-top: 45px;
margin-bottom: 20px;
color: var(--purple-accent);
}

.article-content p {
color: var(--text-light);
margin-bottom: 22px;
font-size: 17px;
line-height: 1.8;
}

.related-posts {
padding: 60px 0;
background: rgba(36, 0, 70, 0.3);
}

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

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

.related-card {
background: rgba(16, 0, 43, 0.7);
border-radius: 12px;
overflow: hidden;
border: 1px solid var(--purple-dark);
transition: all 0.3s ease;
}

.related-card:hover {
transform: translateY(-5px);
border-color: var(--purple-primary);
}

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

.related-card h3 {
padding: 20px;
font-size: 19px;
color: var(--text-white);
}

.related-link {
display: block;
padding: 0 20px 20px;
color: var(--purple-accent);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}

.related-link:hover {
color: var(--purple-light);
}

@media (max-width: 768px) {
.nav-menu {
flex-direction: column;
gap: 15px;
position: absolute;
top: 75px;
left: 0;
right: 0;
background: rgba(36, 0, 70, 0.98);
padding: 20px;
display: none;
}

.hero-content h1 {
font-size: 36px;
}

.posts-grid,
.mistakes-grid,
.stats-grid,
.values-grid,
.team-grid {
grid-template-columns: 1fr;
}

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

.post-image img {
height: 250px;
}

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

.article-header h1 {
font-size: 32px;
}

.article-content h2 {
font-size: 26px;
}

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

@media (max-width: 480px) {
.hero-content h1 {
font-size: 28px;
}

.tagline {
font-size: 16px;
}

.brand-name {
font-size: 20px;
}

.page-header h1 {
font-size: 32px;
}
}
