:root {
--primary-color: #2c5f7c;
--secondary-color: #4a8fb8;
--accent-color: #ff6b35;
--text-dark: #1a1a1a;
--text-light: #666;
--bg-light: #f8f9fa;
--bg-white: #ffffff;
--border-color: #e0e0e0;
--success-color: #28a745;
--warning-color: #ffc107;
--shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
--shadow-md: 0 4px 12px rgba(0,0,0,0.12);
--shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
--transition: all 0.3s ease;
}

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

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

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

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(26, 26, 26, 0.95);
color: #fff;
padding: 20px;
z-index: 9999;
box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
display: none;
}

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

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

.cookie-content p {
margin-bottom: 15px;
}

.cookie-content a {
color: var(--accent-color);
text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
padding: 10px 24px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
transition: var(--transition);
}

.btn-accept {
background-color: var(--success-color);
color: white;
}

.btn-reject {
background-color: transparent;
color: white;
border: 2px solid white;
}

.btn-accept:hover {
background-color: #218838;
}

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

.main-header {
background-color: var(--bg-white);
box-shadow: var(--shadow-sm);
position: sticky;
top: 0;
z-index: 1000;
}

.navigation {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
}

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

.logo-img {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
}

.logo-text {
font-size: 20px;
font-weight: 700;
color: var(--primary-color);
}

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

.nav-menu a {
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
color: var(--primary-color);
}

.hero-section {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
padding: 80px 0;
}

.hero-section .container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.hero-content h1 {
font-size: 42px;
margin-bottom: 20px;
line-height: 1.2;
}

.hero-subtitle {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.95;
}

.cta-button {
display: inline-block;
padding: 14px 32px;
background-color: var(--accent-color);
color: white;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
transition: var(--transition);
}

.cta-button:hover {
background-color: #e55a2b;
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}

.hero-image img {
width: 100%;
border-radius: 10px;
box-shadow: var(--shadow-lg);
}

.quote-section {
background-color: var(--bg-white);
padding: 50px 0;
}

.daily-quote {
max-width: 800px;
margin: 0 auto;
text-align: center;
font-size: 20px;
font-style: italic;
color: var(--text-dark);
border-left: 4px solid var(--primary-color);
padding-left: 30px;
}

.daily-quote cite {
display: block;
margin-top: 15px;
font-size: 16px;
font-style: normal;
color: var(--text-light);
}

.features-section,
.recent-posts {
padding: 80px 0;
}

.features-section h2,
.recent-posts h2 {
text-align: center;
font-size: 36px;
margin-bottom: 50px;
color: var(--primary-color);
}

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

.feature-card {
background-color: var(--bg-white);
padding: 30px;
border-radius: 10px;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}

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

.feature-card.semi-transparent {
background-color: rgba(255, 255, 255, 0.95);
}

.feature-icon {
font-size: 48px;
margin-bottom: 20px;
}

.feature-card h3 {
font-size: 22px;
margin-bottom: 15px;
color: var(--primary-color);
}

.feature-card p {
color: var(--text-light);
line-height: 1.7;
}

.cta-section {
background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
color: white;
padding: 80px 0;
text-align: center;
}

.cta-section h2 {
font-size: 36px;
margin-bottom: 20px;
}

.cta-section p {
font-size: 18px;
margin-bottom: 30px;
}

.cta-secondary {
display: inline-block;
padding: 14px 32px;
background-color: white;
color: var(--primary-color);
text-decoration: none;
border-radius: 5px;
font-weight: 600;
transition: var(--transition);
}

.cta-secondary:hover {
background-color: var(--bg-light);
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}

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

.post-preview-card {
background-color: var(--bg-white);
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}

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

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

.post-preview-card h3 {
padding: 20px 20px 10px;
font-size: 20px;
color: var(--primary-color);
}

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

.read-more {
display: inline-block;
padding: 10px 20px;
margin: 15px 20px 20px;
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
transition: var(--transition);
}

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

.main-footer {
background-color: var(--text-dark);
color: white;
padding: 50px 0 20px;
}

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

.footer-column h4 {
margin-bottom: 20px;
color: var(--accent-color);
}

.footer-column p,
.footer-column ul {
color: #ccc;
line-height: 1.8;
}

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

.footer-column a {
color: #ccc;
text-decoration: none;
transition: var(--transition);
}

.footer-column a:hover {
color: white;
}

.registration-info {
margin-top: 15px;
font-size: 14px;
opacity: 0.8;
}

.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.1);
color: #999;
}

.page-hero {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
padding: 60px 0;
text-align: center;
}

.page-hero h1 {
font-size: 40px;
margin-bottom: 15px;
}

.page-hero p {
font-size: 18px;
opacity: 0.95;
}

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

.blog-posts-list {
max-width: 900px;
margin: 0 auto;
}

.blog-post-item {
background-color: var(--bg-white);
border-radius: 10px;
overflow: hidden;
margin-bottom: 40px;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}

.blog-post-item:hover {
box-shadow: var(--shadow-md);
}

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

.post-content {
padding: 30px;
}

.post-content h2 a {
color: var(--primary-color);
text-decoration: none;
transition: var(--transition);
}

.post-content h2 a:hover {
color: var(--secondary-color);
}

.post-meta {
display: flex;
gap: 20px;
margin: 15px 0;
font-size: 14px;
color: var(--text-light);
}

.post-category {
background-color: var(--bg-light);
padding: 4px 12px;
border-radius: 4px;
}

.read-more-link {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
transition: var(--transition);
}

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

.about-intro {
padding: 60px 0;
background-color: var(--bg-white);
}

.about-content-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

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

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

.about-image img {
width: 100%;
border-radius: 10px;
box-shadow: var(--shadow-md);
}

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

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

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

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

.team-card {
background-color: var(--bg-white);
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: var(--transition);
text-align: center;
}

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

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

.team-card h3 {
padding: 20px 20px 10px;
color: var(--primary-color);
font-size: 22px;
}

.team-role {
color: var(--text-light);
font-weight: 600;
padding: 0 20px;
margin-bottom: 15px;
}

.team-card p {
padding: 0 20px 25px;
color: var(--text-light);
line-height: 1.7;
}

.values-section {
padding: 80px 0;
background-color: var(--bg-white);
}

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

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

.value-item {
text-align: center;
padding: 30px;
}

.value-icon {
font-size: 48px;
margin-bottom: 20px;
}

.value-item h3 {
color: var(--primary-color);
margin-bottom: 15px;
font-size: 22px;
}

.value-item p {
color: var(--text-light);
line-height: 1.7;
}

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

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

.contact-info h2 {
color: var(--primary-color);
margin-bottom: 30px;
font-size: 28px;
}

.contact-detail {
display: flex;
gap: 15px;
margin-bottom: 25px;
}

.contact-icon {
font-size: 24px;
color: var(--primary-color);
}

.contact-detail h3 {
color: var(--primary-color);
margin-bottom: 5px;
font-size: 18px;
}

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

.contact-detail a {
color: var(--primary-color);
text-decoration: none;
}

.contact-detail a:hover {
text-decoration: underline;
}

.map-container {
margin-top: 30px;
border-radius: 10px;
overflow: hidden;
}

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

.contact-form-wrapper {
background-color: var(--bg-white);
padding: 40px;
border-radius: 10px;
box-shadow: var(--shadow-sm);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid var(--border-color);
border-radius: 5px;
font-size: 14px;
font-family: inherit;
transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(44, 95, 124, 0.1);
}

.submit-button {
width: 100%;
padding: 14px;
background-color: var(--primary-color);
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
}

.submit-button:hover {
background-color: var(--secondary-color);
}

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

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

.modal-content {
background-color: white;
padding: 40px;
border-radius: 10px;
max-width: 500px;
text-align: center;
position: relative;
animation: slideIn 0.3s ease;
}

@keyframes slideIn {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}

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

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

.modal-icon {
font-size: 64px;
margin-bottom: 20px;
}

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

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

.post-article {
background-color: var(--bg-white);
}

.post-header {
max-width: 900px;
margin: 0 auto;
padding: 40px 20px 20px;
text-align: center;
}

.post-header h1 {
font-size: 38px;
color: var(--primary-color);
margin-bottom: 20px;
line-height: 1.3;
}

.post-featured-image {
max-width: 1200px;
margin: 0 auto 40px;
}

.post-featured-image img {
width: 100%;
border-radius: 10px;
}

.post-content {
max-width: 800px;
margin: 0 auto;
padding: 0 20px 60px;
}

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

.post-content h2 {
color: var(--primary-color);
font-size: 30px;
margin-top: 40px;
margin-bottom: 20px;
}

.post-content h3 {
color: var(--secondary-color);
font-size: 24px;
margin-top: 30px;
margin-bottom: 15px;
}

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

.post-content ul,
.post-content ol {
margin: 20px 0;
padding-left: 30px;
color: var(--text-light);
line-height: 1.8;
}

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

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

.cta-paragraph {
background-color: #fff3cd;
border-left: 4px solid var(--warning-color);
padding: 20px;
margin: 40px 0;
border-radius: 5px;
}

.post-cta-box {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
padding: 40px;
border-radius: 10px;
text-align: center;
margin: 40px 0;
}

.post-cta-box h3 {
color: white;
margin-bottom: 15px;
}

.post-cta-box p {
color: white;
margin-bottom: 25px;
opacity: 0.95;
}

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

.back-to-blog,
.next-post {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
transition: var(--transition);
}

.back-to-blog:hover,
.next-post:hover {
color: var(--secondary-color);
}

@media (max-width: 968px) {
.hero-section .container,
.about-content-wrapper,
.contact-wrapper {
grid-template-columns: 1fr;
}

.nav-menu {
gap: 15px;
}

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

.features-grid,
.team-grid {
grid-template-columns: 1fr;
}

.post-header h1 {
font-size: 28px;
}
}

@media (max-width: 768px) {
.navigation {
flex-direction: column;
gap: 20px;
}

.nav-menu {
flex-direction: column;
gap: 10px;
text-align: center;
}

.cookie-buttons {
flex-direction: column;
}

.post-content h2 {
font-size: 24px;
}

.post-content h3 {
font-size: 20px;
}

.post-navigation {
flex-direction: column;
gap: 15px;
}
}