:root {
--primary-color: #0a7ea4;
--secondary-color: #1e3a5f;
--accent-color: #f39c12;
--text-dark: #2c3e50;
--text-light: #ecf0f1;
--bg-light: #f8f9fa;
--bg-white: #ffffff;
--border-color: #e0e0e0;
--shadow: 0 2px 10px rgba(0,0,0,0.1);
--shadow-hover: 0 4px 20px 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-white);
}

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

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

.navbar {
padding: 1rem 0;
}

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

.logo-link {
display: flex;
align-items: center;
text-decoration: none;
gap: 12px;
}

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

.site-title {
font-size: 1.3rem;
font-weight: 700;
color: var(--primary-color);
}

.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
}

.nav-link {
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
transition: var(--transition);
padding: 0.5rem 0;
}

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

.burger-menu {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
}

.burger-menu span {
width: 25px;
height: 3px;
background-color: var(--text-dark);
transition: var(--transition);
}

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

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
z-index: 1;
}

.hero-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}

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

.hero-title {
font-size: 3rem;
font-weight: 700;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
font-size: 1.3rem;
margin-bottom: 2rem;
text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button,
.cta-button-secondary {
display: inline-block;
padding: 1rem 2.5rem;
background-color: var(--accent-color);
color: var(--bg-white);
text-decoration: none;
font-weight: 600;
border-radius: 50px;
transition: var(--transition);
box-shadow: var(--shadow);
}

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

.stats-section,
.featured-section,
.why-choose-section,
.cta-section {
padding: 4rem 0;
}

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

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

.stat-card {
background-color: var(--bg-white);
padding: 2rem;
text-align: center;
border-radius: 10px;
box-shadow: var(--shadow);
transition: var(--transition);
cursor: pointer;
position: relative;
}

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

.stat-card[data-tooltip]:hover::after {
content: attr(data-tooltip);
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
background-color: var(--text-dark);
color: var(--text-light);
padding: 0.5rem 1rem;
border-radius: 5px;
font-size: 0.9rem;
white-space: nowrap;
margin-bottom: 10px;
}

.stat-number {
font-size: 3rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 0.5rem;
}

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

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

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

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

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

.feature-content {
padding: 1.5rem;
}

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

.feature-content p {
color: var(--text-dark);
line-height: 1.8;
}

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

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

.reason-icon {
color: var(--primary-color);
margin-bottom: 1rem;
}

.reason-item h3 {
font-size: 1.3rem;
margin-bottom: 1rem;
color: var(--secondary-color);
}

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

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

.cta-content h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.cta-content p {
font-size: 1.2rem;
margin-bottom: 2rem;
}

.cta-button-secondary {
background-color: var(--accent-color);
}

.main-footer {
background-color: var(--secondary-color);
color: var(--text-light);
padding: 3rem 0 1rem;
}

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

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

.footer-column h4 {
font-size: 1.2rem;
margin-bottom: 1rem;
color: var(--accent-color);
}

.footer-column p {
line-height: 1.8;
color: var(--text-light);
opacity: 0.9;
}

.footer-links {
list-style: none;
}

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

.footer-links a {
color: var(--text-light);
text-decoration: none;
transition: var(--transition);
opacity: 0.9;
}

.footer-links a:hover {
color: var(--accent-color);
opacity: 1;
}

.contact-info {
display: flex;
align-items: flex-start;
gap: 10px;
margin-bottom: 1rem;
line-height: 1.8;
}

.contact-info svg {
flex-shrink: 0;
margin-top: 3px;
}

.contact-info a {
color: var(--text-light);
text-decoration: none;
}

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

.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}

.social-link {
color: var(--text-light);
transition: var(--transition);
}

.social-link:hover {
color: var(--accent-color);
transform: translateY(-3px);
}

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

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: var(--bg-white);
box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
padding: 1.5rem;
z-index: 9999;
display: none;
}

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

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

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

.cookie-content p {
margin-bottom: 1rem;
line-height: 1.6;
}

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

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

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

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

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

.customize-btn {
background-color: var(--bg-light);
color: var(--text-dark);
}

.customize-btn:hover {
background-color: var(--border-color);
}

.decline-btn {
background-color: transparent;
color: var(--text-dark);
border: 1px solid var(--border-color);
}

.decline-btn:hover {
background-color: var(--bg-light);
}

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

.page-header-content h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.page-header-content p {
font-size: 1.2rem;
opacity: 0.9;
}

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

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

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

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

.blog-image-wrapper {
position: relative;
overflow: hidden;
}

.blog-image {
width: 100%;
height: 250px;
object-fit: cover;
transition: var(--transition);
}

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

.blog-badge {
position: absolute;
top: 1rem;
right: 1rem;
background-color: var(--accent-color);
color: var(--text-light);
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 600;
}

.blog-content {
padding: 1.5rem;
}

.blog-title a {
color: var(--secondary-color);
text-decoration: none;
font-size: 1.3rem;
font-weight: 600;
transition: var(--transition);
}

.blog-title a:hover {
color: var(--primary-color);
}

.blog-meta {
display: flex;
gap: 1rem;
margin: 1rem 0;
font-size: 0.9rem;
color: #7f8c8d;
flex-wrap: wrap;
}

.blog-date {
display: flex;
align-items: center;
gap: 5px;
}

.blog-excerpt {
color: var(--text-dark);
line-height: 1.8;
margin-bottom: 1rem;
}

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

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

.about-story-section,
.team-section,
.values-section,
.mission-section {
padding: 4rem 0;
}

.about-story-section {
background-color: var(--bg-light);
}

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

.story-content h2 {
font-size: 2rem;
margin-bottom: 1.5rem;
color: var(--secondary-color);
}

.story-content p {
margin-bottom: 1rem;
line-height: 1.8;
}

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

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

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

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

.team-photo {
width: 200px;
height: 200px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 1rem;
border: 5px solid var(--primary-color);
}

.team-card h3 {
font-size: 1.3rem;
margin-bottom: 0.5rem;
color: var(--secondary-color);
}

.team-role {
color: var(--primary-color);
font-weight: 600;
margin-bottom: 1rem;
}

.team-bio {
color: var(--text-dark);
line-height: 1.8;
}

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

.value-item {
text-align: center;
padding: 2rem;
background-color: var(--bg-white);
border-radius: 10px;
box-shadow: var(--shadow);
}

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

.value-item h3 {
font-size: 1.3rem;
margin-bottom: 1rem;
color: var(--secondary-color);
}

.mission-section {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--text-light);
}

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

.mission-content h2 {
font-size: 2.5rem;
margin-bottom: 2rem;
}

.mission-content p {
font-size: 1.2rem;
line-height: 1.8;
margin-bottom: 1.5rem;
}

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

.contact-layout {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 3rem;
}

.contact-info-side h2 {
font-size: 2rem;
margin-bottom: 1rem;
color: var(--secondary-color);
}

.contact-details {
margin: 2rem 0;
}

.contact-detail-item {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
}

.contact-icon {
flex-shrink: 0;
}

.contact-icon svg {
color: var(--primary-color);
}

.contact-detail-text h4 {
font-size: 1.1rem;
margin-bottom: 0.5rem;
color: var(--secondary-color);
}

.social-connect h4 {
margin-bottom: 1rem;
color: var(--secondary-color);
}

.contact-form-side h2 {
font-size: 2rem;
margin-bottom: 2rem;
color: var(--secondary-color);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
padding: 0.8rem;
border: 1px solid var(--border-color);
border-radius: 5px;
font-family: inherit;
font-size: 1rem;
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(10, 126, 164, 0.1);
}

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

.submit-btn:hover {
background-color: #096a8a;
transform: translateY(-2px);
box-shadow: var(--shadow);
}

.success-modal {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0,0,0,0.5);
z-index: 9999;
align-items: center;
justify-content: center;
}

.success-modal.show {
display: flex;
}

.modal-content {
background-color: var(--bg-white);
padding: 3rem;
border-radius: 10px;
text-align: center;
max-width: 500px;
box-shadow: var(--shadow-hover);
}

.modal-icon svg {
color: #27ae60;
margin-bottom: 1rem;
}

.modal-content h3 {
font-size: 2rem;
margin-bottom: 1rem;
color: var(--secondary-color);
}

.modal-content p {
margin-bottom: 2rem;
line-height: 1.8;
}

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

.modal-close-btn:hover {
background-color: #096a8a;
}

.post-article {
padding: 2rem 0;
}

.post-header {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--text-light);
padding: 3rem 0;
text-align: center;
}

.post-category {
display: inline-block;
background-color: var(--accent-color);
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 600;
margin-bottom: 1rem;
}

.post-title {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.post-meta {
display: flex;
gap: 2rem;
justify-content: center;
font-size: 0.95rem;
opacity: 0.9;
flex-wrap: wrap;
}

.post-featured-image {
max-width: 1200px;
margin: 2rem auto;
padding: 0 20px;
}

.post-featured-image img {
width: 100%;
height: 500px;
object-fit: cover;
border-radius: 10px;
box-shadow: var(--shadow);
}

.post-content-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 2rem 20px;
display: grid;
grid-template-columns: 1fr 300px;
gap: 3rem;
}

.post-content {
line-height: 1.9;
}

.lead-paragraph {
font-size: 1.2rem;
color: #34495e;
margin-bottom: 2rem;
line-height: 1.8;
}

.post-content h2 {
font-size: 2rem;
margin-top: 2.5rem;
margin-bottom: 1rem;
color: var(--secondary-color);
}

.post-content h3 {
font-size: 1.5rem;
margin-top: 2rem;
margin-bottom: 1rem;
color: var(--secondary-color);
}

.post-content p {
margin-bottom: 1.5rem;
}

.post-sidebar {
position: sticky;
top: 100px;
height: fit-content;
}

.sidebar-widget {
background-color: var(--bg-light);
padding: 1.5rem;
border-radius: 10px;
margin-bottom: 2rem;
}

.sidebar-widget h3 {
font-size: 1.2rem;
margin-bottom: 1rem;
color: var(--secondary-color);
}

.fact-list {
list-style: none;
}

.fact-list li {
padding: 0.5rem 0;
border-bottom: 1px solid var(--border-color);
}

.fact-list li:last-child {
border-bottom: none;
}

.related-links {
display: flex;
flex-direction: column;
gap: 0.8rem;
}

.related-post-link {
color: var(--primary-color);
text-decoration: none;
transition: var(--transition);
}

.related-post-link:hover {
color: var(--accent-color);
padding-left: 5px;
}

.share-buttons {
display: flex;
gap: 1rem;
}

.share-btn {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
transition: var(--transition);
}

.share-btn.facebook {
background-color: #3b5998;
color: white;
}

.share-btn.twitter {
background-color: #1da1f2;
color: white;
}

.share-btn:hover {
transform: translateY(-3px);
box-shadow: var(--shadow);
}

@media (max-width: 768px) {
.burger-menu {
display: flex;
}

.nav-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background-color: var(--bg-white);
flex-direction: column;
gap: 0;
padding: 1rem;
box-shadow: var(--shadow);
}

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

.nav-menu li {
padding: 0.5rem 0;
}

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

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

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

.stats-grid,
.featured-grid,
.blog-grid {
grid-template-columns: 1fr;
}

.about-story-grid {
grid-template-columns: 1fr;
}

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

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

.post-sidebar {
position: static;
}

.post-title {
font-size: 1.8rem;
}

.post-featured-image img {
height: 300px;
}

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

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

.cookie-btn {
width: 100%;
}
}