:root {
--primary-color: #2c5aa0;
--secondary-color: #1a3d6d;
--accent-color: #e67e22;
--text-dark: #333333;
--text-light: #666666;
--bg-light: #f8f9fa;
--white: #ffffff;
--border-color: #e0e0e0;
--success-color: #27ae60;
--danger-color: #e74c3c;
--shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
--shadow-md: 0 4px 8px rgba(0,0,0,0.15);
--shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
--transition: all 0.3s ease;
--font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

html {
scroll-behavior: smooth;
font-size: 16px;
}

body {
font-family: var(--font-main);
line-height: 1.7;
color: var(--text-dark);
background-color: var(--white);
overflow-x: hidden;
}

body.font-large {
font-size: 18px;
}

body.font-large h1 { font-size: 2.8rem; }
body.font-large h2 { font-size: 2.2rem; }
body.font-large h3 { font-size: 1.9rem; }
body.font-large p, body.font-large li { font-size: 1.15rem; }

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

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

ul {
list-style: none;
}

.main-header {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--white);
position: sticky;
top: 0;
z-index: 1000;
box-shadow: var(--shadow-md);
}

.navbar-container {
max-width: 1400px;
margin: 0 auto;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
gap: 2rem;
}

.logo-section {
display: flex;
align-items: center;
gap: 1rem;
}

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

.brand-name {
font-size: 1.4rem;
font-weight: 700;
color: var(--white);
}

.nav-menu {
display: flex;
gap: 2rem;
align-items: center;
}

.nav-menu a {
color: var(--white);
font-weight: 500;
padding: 0.5rem 1rem;
border-radius: 5px;
transition: var(--transition);
display: flex;
align-items: center;
gap: 0.5rem;
}

.nav-menu a:hover,
.nav-menu a.active-link {
background: rgba(255,255,255,0.2);
transform: translateY(-2px);
}

.mobile-toggle {
display: none;
background: transparent;
border: 2px solid var(--white);
color: var(--white);
font-size: 1.5rem;
padding: 0.5rem 1rem;
cursor: pointer;
border-radius: 5px;
}

.font-resize-btn {
background: rgba(255,255,255,0.2);
border: none;
color: var(--white);
padding: 0.5rem 1rem;
border-radius: 5px;
cursor: pointer;
font-weight: 600;
transition: var(--transition);
}

.font-resize-btn:hover {
background: rgba(255,255,255,0.3);
}

.primary-content {
min-height: 70vh;
}

.content-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

.hero-banner {
position: relative;
height: 600px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.hero-background {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}

.hero-overlay {
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(44,90,160,0.85), rgba(26,61,109,0.85));
z-index: 2;
}

.hero-content {
position: relative;
z-index: 3;
text-align: center;
color: var(--white);
max-width: 800px;
padding: 2rem;
}

.hero-title {
font-size: 3rem;
font-weight: 800;
margin-bottom: 1.5rem;
line-height: 1.2;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
font-size: 1.3rem;
margin-bottom: 2rem;
font-weight: 300;
}

.cta-primary {
display: inline-block;
padding: 1rem 2.5rem;
background: var(--accent-color);
color: var(--white);
font-weight: 700;
border-radius: 50px;
box-shadow: var(--shadow-lg);
transition: var(--transition);
}

.cta-primary:hover {
background: #d35400;
transform: translateY(-3px);
box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.intro-section,
.comparison-section,
.features-section,
.cta-section {
padding: 5rem 0;
}

.section-heading {
font-size: 2.5rem;
text-align: center;
margin-bottom: 3rem;
color: var(--primary-color);
font-weight: 700;
}

.intro-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.lead-paragraph {
font-size: 1.2rem;
color: var(--primary-color);
font-weight: 500;
margin-bottom: 1.5rem;
}

.intro-text p {
margin-bottom: 1.5rem;
color: var(--text-light);
}

.feature-image {
width: 100%;
border-radius: 15px;
box-shadow: var(--shadow-md);
}

.table-responsive {
overflow-x: auto;
}

.comparison-table {
width: 100%;
border-collapse: collapse;
background: var(--white);
box-shadow: var(--shadow-md);
border-radius: 10px;
overflow: hidden;
}

.comparison-table thead {
background: var(--primary-color);
color: var(--white);
}

.comparison-table th,
.comparison-table td {
padding: 1.2rem;
text-align: left;
border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover {
background: var(--bg-light);
}

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

.feature-card {
background: var(--white);
padding: 2.5rem;
border-radius: 15px;
box-shadow: var(--shadow-sm);
transition: var(--transition);
border: 2px solid transparent;
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
border-color: var(--primary-color);
}

.feature-icon {
font-size: 3rem;
color: var(--accent-color);
margin-bottom: 1.5rem;
}

.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--primary-color);
}

.feature-card p {
color: var(--text-light);
margin-bottom: 1.5rem;
}

.read-more {
color: var(--primary-color);
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}

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

.cta-section {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--white);
}

.cta-section .content-wrapper {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 3rem;
align-items: center;
}

.cta-content h2 {
font-size: 2.2rem;
margin-bottom: 1.5rem;
}

.cta-button-large {
display: inline-block;
padding: 1.2rem 3rem;
background: var(--accent-color);
color: var(--white);
font-weight: 700;
border-radius: 50px;
margin-top: 1.5rem;
transition: var(--transition);
}

.cta-button-large:hover {
background: #d35400;
transform: scale(1.05);
}

.cta-image {
width: 100%;
border-radius: 15px;
box-shadow: var(--shadow-lg);
}

.disclaimer-section {
background: var(--bg-light);
padding: 4rem 0;
}

.disclaimer-box {
background: var(--white);
padding: 2.5rem;
border-radius: 10px;
border-left: 5px solid var(--danger-color);
box-shadow: var(--shadow-sm);
}

.disclaimer-box h3 {
color: var(--danger-color);
margin-bottom: 1.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
}

.disclaimer-box p {
margin-bottom: 1rem;
color: var(--text-light);
}

.site-footer {
background: var(--secondary-color);
color: var(--white);
padding: 4rem 0 1rem;
}

.footer-content {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 2rem;
}

.footer-section h4 {
font-size: 1.3rem;
margin-bottom: 1.5rem;
color: var(--accent-color);
}

.footer-section p {
margin-bottom: 1rem;
line-height: 1.8;
}

.footer-links li {
margin-bottom: 0.8rem;
}

.footer-links a {
color: rgba(255,255,255,0.8);
transition: var(--transition);
}

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

.registration-info {
font-weight: 600;
color: var(--accent-color);
}

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

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--white);
box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
padding: 2rem;
z-index: 10000;
transform: translateY(100%);
transition: transform 0.4s ease;
}

.cookie-banner.show {
transform: translateY(0);
}

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

.cookie-text h4 {
color: var(--primary-color);
margin-bottom: 0.8rem;
display: flex;
align-items: center;
gap: 0.5rem;
}

.cookie-text p {
color: var(--text-light);
margin-bottom: 0.5rem;
}

.cookie-link {
color: var(--primary-color);
text-decoration: underline;
}

.cookie-actions {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}

.cookie-btn {
padding: 0.8rem 1.5rem;
border: none;
border-radius: 5px;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
}

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

.cookie-btn.customize {
background: var(--primary-color);
color: var(--white);
}

.cookie-btn.decline {
background: var(--border-color);
color: var(--text-dark);
}

.cookie-btn:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-sm);
}

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

.page-title {
font-size: 3rem;
font-weight: 700;
margin-bottom: 1rem;
}

.page-subtitle {
font-size: 1.3rem;
font-weight: 300;
}

.mission-section,
.team-section,
.values-section,
.history-section {
padding: 5rem 0;
}

.mission-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.mission-text h2 {
color: var(--primary-color);
margin-bottom: 1.5rem;
font-size: 2rem;
}

.mission-text p {
margin-bottom: 1.5rem;
color: var(--text-light);
}

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

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

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

.team-photo {
width: 100%;
height: 350px;
object-fit: cover;
}

.team-card h3 {
font-size: 1.4rem;
color: var(--primary-color);
margin: 1.5rem 0 0.5rem;
padding: 0 1.5rem;
}

.team-role {
color: var(--accent-color);
font-weight: 600;
font-size: 0.95rem;
padding: 0 1.5rem;
}

.team-bio {
padding: 1rem 1.5rem 2rem;
color: var(--text-light);
line-height: 1.6;
}

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

.value-item {
text-align: center;
padding: 2rem;
}

.value-icon {
font-size: 3rem;
color: var(--accent-color);
margin-bottom: 1rem;
}

.value-item h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}

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

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

.timeline::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 3px;
background: var(--primary-color);
}

.timeline-item {
position: relative;
margin-bottom: 3rem;
padding-left: 3rem;
}

.timeline-marker {
position: absolute;
left: -1.5rem;
top: 0;
width: 30px;
height: 30px;
border-radius: 50%;
background: var(--accent-color);
border: 4px solid var(--white);
box-shadow: 0 0 0 3px var(--primary-color);
}

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

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

.blog-intro {
padding: 3rem 0;
background: var(--bg-light);
}

.intro-text {
text-align: center;
font-size: 1.1rem;
color: var(--text-light);
max-width: 900px;
margin: 0 auto;
}

.blog-posts-section {
padding: 5rem 0;
}

.posts-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 3rem;
}

.blog-post-card {
background: var(--white);
border-radius: 15px;
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}

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

.post-image-wrapper {
position: relative;
}

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

.post-category {
position: absolute;
top: 1rem;
right: 1rem;
background: var(--accent-color);
color: var(--white);
padding: 0.4rem 1rem;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
}

.post-content {
padding: 2rem;
}

.post-title {
font-size: 1.4rem;
color: var(--primary-color);
margin-bottom: 1rem;
line-height: 1.4;
}

.post-meta {
display: flex;
gap: 1.5rem;
margin-bottom: 1rem;
font-size: 0.9rem;
color: var(--text-light);
flex-wrap: wrap;
}

.post-excerpt {
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.7;
}

.read-more-link {
color: var(--primary-color);
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}

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

.newsletter-section {
background: var(--bg-light);
padding: 4rem 0;
}

.newsletter-box {
max-width: 800px;
margin: 0 auto;
background: var(--white);
padding: 3rem;
border-radius: 15px;
box-shadow: var(--shadow-md);
text-align: center;
}

.newsletter-content h2 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.newsletter-content p {
color: var(--text-light);
margin-bottom: 2rem;
}

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

.newsletter-input {
flex: 1;
padding: 1rem;
border: 2px solid var(--border-color);
border-radius: 5px;
font-size: 1rem;
}

.newsletter-submit {
padding: 1rem 2rem;
background: var(--primary-color);
color: var(--white);
border: none;
border-radius: 5px;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
}

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

.blog-categories {
padding: 4rem 0;
}

.categories-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
}

.category-box {
background: var(--white);
padding: 2rem;
border-radius: 10px;
text-align: center;
box-shadow: var(--shadow-sm);
transition: var(--transition);
border: 2px solid transparent;
}

.category-box:hover {
border-color: var(--primary-color);
transform: translateY(-5px);
box-shadow: var(--shadow-md);
}

.category-box i {
font-size: 2.5rem;
color: var(--accent-color);
margin-bottom: 1rem;
}

.category-box h3 {
color: var(--primary-color);
margin-bottom: 0.5rem;
}

.category-box p {
color: var(--text-light);
font-size: 0.9rem;
}

.contact-section {
padding: 5rem 0;
}

.contact-grid {
display: grid;
gap: 4rem;
}

.contact-info h2 {
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.contact-info > p {
color: var(--text-light);
margin-bottom: 2rem;
}

.contact-details {
display: grid;
gap: 2rem;
}

.contact-item {
display: flex;
gap: 1.5rem;
align-items: flex-start;
}

.contact-icon {
font-size: 2rem;
color: var(--accent-color);
flex-shrink: 0;
}

.contact-text h3 {
color: var(--primary-color);
margin-bottom: 0.5rem;
}

.contact-text p {
color: var(--text-light);
}

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

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

.contact-hours {
font-size: 0.9rem;
font-style: italic;
}

.contact-image {
margin-top: 2rem;
}

.contact-form-wrapper {
margin-top: 4rem;
}

.contact-form-wrapper h2 {
color: var(--primary-color);
margin-bottom: 2rem;
}

.contact-form {
display: grid;
gap: 1.5rem;
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 0.9rem;
border: 2px solid var(--border-color);
border-radius: 5px;
font-size: 1rem;
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);
}

.checkbox-group {
display: flex;
align-items: center;
gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
width: auto;
}

.checkbox-group label {
margin: 0;
font-weight: normal;
}

.submit-button {
padding: 1rem 2rem;
background: var(--primary-color);
color: var(--white);
border: none;
border-radius: 5px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
display: inline-flex;
align-items: center;
gap: 0.5rem;
justify-content: center;
}

.submit-button:hover {
background: var(--secondary-color);
transform: translateY(-2px);
}

.faq-section {
background: var(--bg-light);
padding: 4rem 0;
}

.faq-grid {
display: grid;
gap: 2rem;
}

.faq-item {
background: var(--white);
padding: 2rem;
border-radius: 10px;
box-shadow: var(--shadow-sm);
}

.faq-item h3 {
color: var(--primary-color);
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
}

.faq-item p {
color: var(--text-light);
}

.modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.7);
display: flex;
align-items: center;
justify-content: center;
z-index: 10000;
opacity: 0;
visibility: hidden;
transition: var(--transition);
}

.modal-overlay.show {
opacity: 1;
visibility: visible;
}

.modal-content {
background: var(--white);
padding: 3rem;
border-radius: 15px;
max-width: 500px;
text-align: center;
transform: scale(0.8);
transition: var(--transition);
}

.modal-overlay.show .modal-content {
transform: scale(1);
}

.modal-icon {
font-size: 4rem;
color: var(--success-color);
margin-bottom: 1rem;
}

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

.modal-content p {
color: var(--text-light);
margin-bottom: 2rem;
}

.modal-close {
padding: 0.8rem 2rem;
background: var(--primary-color);
color: var(--white);
border: none;
border-radius: 5px;
font-weight: 600;
cursor: pointer;
}

.post-article {
padding-bottom: 3rem;
}

.article-header {
background: var(--bg-light);
padding: 3rem 0;
}

.breadcrumb {
font-size: 0.9rem;
color: var(--text-light);
margin-bottom: 1.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
flex-wrap: wrap;
}

.breadcrumb a {
color: var(--primary-color);
}

.breadcrumb a:hover {
text-decoration: underline;
}

.article-title {
font-size: 2.8rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
line-height: 1.3;
}

.article-meta {
display: flex;
gap: 2rem;
color: var(--text-light);
flex-wrap: wrap;
}

.meta-item {
display: flex;
align-items: center;
gap: 0.4rem;
}

.article-featured-image {
max-width: 1200px;
margin: -4rem auto 3rem;
padding: 0 2rem;
}

.featured-img {
width: 100%;
border-radius: 15px;
box-shadow: var(--shadow-lg);
}

.article-content {
padding: 3rem 0;
}

.article-section {
margin-bottom: 3rem;
}

.article-section h2 {
color: var(--primary-color);
font-size: 2rem;
margin-bottom: 1.5rem;
}

.article-section h3 {
color: var(--secondary-color);
font-size: 1.5rem;
margin: 2rem 0 1rem;
}

.article-section p {
margin-bottom: 1.5rem;
color: var(--text-light);
line-height: 1.8;
}

.article-section ul {
list-style: disc;
margin-left: 2rem;
margin-bottom: 1.5rem;
}

.article-section ul li {
margin-bottom: 0.8rem;
color: var(--text-light);
}

.article-section strong {
color: var(--text-dark);
font-weight: 600;
}

.article-cta {
background: var(--bg-light);
padding: 3rem;
border-radius: 15px;
text-align: center;
margin-top: 3rem;
}

.article-cta h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.article-cta p {
color: var(--text-light);
margin-bottom: 2rem;
}

.cta-button {
display: inline-block;
padding: 1rem 2.5rem;
background: var(--accent-color);
color: var(--white);
font-weight: 600;
border-radius: 50px;
transition: var(--transition);
}

.cta-button:hover {
background: #d35400;
transform: translateY(-3px);
}

.related-posts {
background: var(--bg-light);
padding: 4rem 0;
}

.related-posts h3 {
text-align: center;
color: var(--primary-color);
font-size: 2rem;
margin-bottom: 3rem;
}

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

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

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

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

.related-card h4 {
padding: 1.5rem;
color: var(--primary-color);
font-size: 1.1rem;
}

@media (max-width: 968px) {
.navbar-container {
flex-wrap: wrap;
}

.mobile-toggle {
display: block;
order: 3;
}

.nav-menu {
display: none;
width: 100%;
order: 4;
flex-direction: column;
background: var(--secondary-color);
padding: 1rem 0;
border-radius: 5px;
margin-top: 1rem;
}

.nav-menu.active {
display: flex;
}

.hero-title {
font-size: 2rem;
}

.hero-subtitle {
font-size: 1.1rem;
}

.intro-grid,
.mission-grid,
.cta-section .content-wrapper {
grid-template-columns: 1fr;
}

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

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

.article-title {
font-size: 2rem;
}

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

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

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

@media (max-width: 640px) {
html {
font-size: 14px;
}

.content-wrapper {
padding: 0 1rem;
}

.hero-banner {
height: 400px;
}

.page-title {
font-size: 2rem;
}

.section-heading {
font-size: 1.8rem;
}

.article-featured-image {
margin-top: -2rem;
}
}