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

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.7;
color: #2c3e50;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
min-height: 100vh;
}

.main-navigation {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
position: sticky;
top: 0;
z-index: 1000;
}

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

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

.logo-section img {
border-radius: 50%;
border: 3px solid white;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.site-title {
font-size: 1.8rem;
font-weight: 700;
color: white;
letter-spacing: 1px;
}

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

.nav-menu a {
color: white;
text-decoration: none;
font-weight: 500;
font-size: 1.05rem;
transition: all 0.3s ease;
padding: 0.5rem 1rem;
border-radius: 5px;
position: relative;
}

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

.parallax-hero {
background: url('images/1.jpg') center center/cover no-repeat fixed;
height: 600px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.hero-overlay {
background: rgba(0,0,0,0.6);
padding: 4rem;
text-align: center;
border-radius: 15px;
backdrop-filter: blur(5px);
}

.hero-title {
font-size: 3.5rem;
color: white;
margin-bottom: 1.5rem;
text-shadow: 3px 3px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
font-size: 1.4rem;
color: #ecf0f1;
margin-bottom: 2.5rem;
}

.cta-button {
display: inline-block;
padding: 1rem 2.5rem;
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
color: white;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.light-effect {
position: relative;
overflow: hidden;
}

.light-effect::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
transition: left 0.5s ease;
}

.light-effect:hover::before {
left: 100%;
}

.light-effect:hover {
transform: scale(1.05);
box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.intro-section {
padding: 5rem 2rem;
}

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

.intro-section h2 {
font-size: 2.8rem;
color: #2c3e50;
margin-bottom: 1.5rem;
text-align: center;
}

.lead-text {
font-size: 1.2rem;
color: #555;
text-align: center;
max-width: 900px;
margin: 0 auto 3rem;
line-height: 1.8;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

.feature-card {
background: white;
padding: 2.5rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.feature-icon {
font-size: 3.5rem;
margin-bottom: 1.5rem;
}

.feature-card h3 {
font-size: 1.6rem;
color: #667eea;
margin-bottom: 1rem;
}

.latest-posts {
background: white;
padding: 5rem 2rem;
}

.posts-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

.post-preview {
background: #f8f9fa;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}

.post-preview:hover {
transform: translateY(-8px);
}

.post-preview img {
width: 100%;
height: auto;
display: block;
}

.post-preview h3 {
padding: 1.5rem;
font-size: 1.5rem;
color: #2c3e50;
}

.post-preview p {
padding: 0 1.5rem 1rem;
color: #666;
}

.read-more {
display: inline-block;
margin: 0 1.5rem 1.5rem;
padding: 0.7rem 1.8rem;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-decoration: none;
border-radius: 25px;
font-weight: 500;
}

.why-choose {
padding: 5rem 2rem;
background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

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

.reason-item {
background: white;
padding: 2rem;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.reason-item h4 {
font-size: 1.4rem;
color: #764ba2;
margin-bottom: 1rem;
}

.site-footer {
background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
color: white;
padding: 4rem 2rem 2rem;
}

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

.footer-section h3 {
font-size: 1.4rem;
margin-bottom: 1.5rem;
color: #ecf0f1;
}

.footer-section p,
.footer-section li {
margin-bottom: 0.8rem;
color: #bdc3c7;
}

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

.footer-section a {
color: #bdc3c7;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-section a:hover {
color: #3498db;
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid #7f8c8d;
color: #95a5a6;
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 2rem;
box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
z-index: 9999;
display: none;
}

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

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

.cookie-content h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}

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

.cookie-content a {
color: #ffd700;
text-decoration: underline;
}

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

.cookie-btn {
padding: 0.8rem 1.8rem;
border: none;
border-radius: 25px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.accept-all {
background: #27ae60;
color: white;
}

.accept-all:hover {
background: #229954;
transform: scale(1.05);
}

.customize {
background: #f39c12;
color: white;
}

.customize:hover {
background: #d68910;
transform: scale(1.05);
}

.decline {
background: #e74c3c;
color: white;
}

.decline:hover {
background: #c0392b;
transform: scale(1.05);
}

.page-header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 5rem 2rem;
text-align: center;
color: white;
}

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

.blog-main {
padding: 4rem 2rem;
}

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

.blog-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}

.blog-card:hover {
transform: translateY(-10px);
}

.blog-image img {
width: 100%;
height: auto;
display: block;
}

.blog-content {
padding: 2rem;
}

.blog-content h2 {
font-size: 1.6rem;
color: #2c3e50;
margin-bottom: 1rem;
}

.blog-excerpt {
color: #666;
margin-bottom: 1.5rem;
line-height: 1.6;
}

.blog-meta {
display: flex;
gap: 1.5rem;
margin-bottom: 1.5rem;
color: #999;
font-size: 0.9rem;
}

.read-more-btn {
display: inline-block;
padding: 0.7rem 1.8rem;
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
color: white;
text-decoration: none;
border-radius: 25px;
font-weight: 500;
}

.about-header {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.about-main {
background: white;
}

.about-intro {
padding: 5rem 2rem;
background: #f8f9fa;
}

.intro-text {
font-size: 1.1rem;
color: #555;
margin-bottom: 1.5rem;
line-height: 1.8;
}

.team-section {
padding: 5rem 2rem;
}

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

.team-member {
background: #f8f9fa;
padding: 2rem;
border-radius: 15px;
text-align: center;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}

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

.team-member img {
border-radius: 50%;
margin-bottom: 1.5rem;
border: 5px solid #667eea;
}

.team-member h3 {
font-size: 1.4rem;
color: #2c3e50;
margin-bottom: 0.5rem;
}

.member-role {
color: #667eea;
font-weight: 600;
margin-bottom: 1rem;
}

.member-bio {
color: #666;
line-height: 1.6;
}

.mission-vision {
padding: 5rem 2rem;
background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

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

.mission-box,
.vision-box {
background: white;
padding: 3rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-box h3,
.vision-box h3 {
font-size: 1.8rem;
color: #764ba2;
margin-bottom: 1.5rem;
}

.values-section {
padding: 5rem 2rem;
}

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

.value-item {
background: #f8f9fa;
padding: 2rem;
border-radius: 12px;
text-align: center;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.value-icon {
font-size: 3rem;
margin-bottom: 1rem;
}

.value-item h4 {
font-size: 1.3rem;
color: #667eea;
margin-bottom: 1rem;
}

.contact-header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-main {
padding: 5rem 2rem;
background: white;
}

.contact-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 4rem;
}

.contact-info-section h2,
.contact-form-section h2 {
font-size: 2rem;
color: #2c3e50;
margin-bottom: 2rem;
}

.info-block {
display: flex;
gap: 1.5rem;
margin-bottom: 2rem;
padding: 1.5rem;
background: #f8f9fa;
border-radius: 10px;
}

.info-icon {
font-size: 2rem;
color: #667eea;
}

.info-details h3 {
font-size: 1.2rem;
color: #2c3e50;
margin-bottom: 0.5rem;
}

.info-details p {
color: #666;
}

.info-details a {
color: #667eea;
text-decoration: none;
}

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

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

.form-group label {
font-weight: 600;
margin-bottom: 0.5rem;
color: #2c3e50;
}

.required {
color: #e74c3c;
}

.form-group input,
.form-group textarea {
padding: 1rem;
border: 2px solid #ddd;
border-radius: 8px;
font-size: 1rem;
transition: border-color 0.3s ease;
font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: #667eea;
}

.submit-btn {
padding: 1rem 2.5rem;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.submit-btn:hover {
transform: scale(1.05);
box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

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

.modal-content {
background: white;
margin: 10% auto;
padding: 3rem;
border-radius: 15px;
max-width: 500px;
text-align: center;
box-shadow: 0 15px 50px rgba(0,0,0,0.3);
position: relative;
}

.close-modal {
position: absolute;
right: 1.5rem;
top: 1rem;
font-size: 2rem;
cursor: pointer;
color: #999;
}

.close-modal:hover {
color: #333;
}

.modal-icon {
font-size: 4rem;
margin-bottom: 1rem;
}

.modal-content h2 {
font-size: 2rem;
color: #27ae60;
margin-bottom: 1rem;
}

.post-article {
background: white;
}

.post-header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 4rem 2rem;
color: white;
text-align: center;
}

.post-header h1 {
font-size: 2.8rem;
margin-bottom: 1.5rem;
}

.post-meta {
display: flex;
justify-content: center;
gap: 2rem;
font-size: 1rem;
}

.post-featured-image {
width: 100%;
max-height: 600px;
overflow: hidden;
}

.post-featured-image img {
width: 100%;
height: auto;
display: block;
}

.post-content {
padding: 4rem 2rem;
}

.post-content .content-wrapper {
max-width: 900px;
}

.lead-paragraph {
font-size: 1.3rem;
color: #555;
margin-bottom: 2.5rem;
line-height: 1.9;
font-weight: 500;
}

.post-content h2 {
font-size: 2rem;
color: #2c3e50;
margin-top: 3rem;
margin-bottom: 1.5rem;
}

.post-content p {
font-size: 1.1rem;
color: #555;
margin-bottom: 1.5rem;
line-height: 1.8;
}

@media (max-width: 768px) {
.nav-container {
flex-direction: column;
gap: 1.5rem;
padding: 1rem;
}

.nav-menu {
flex-direction: column;
gap: 1rem;
text-align: center;
}

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

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

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

.contact-container {
grid-template-columns: 1fr;
gap: 2rem;
}

.mission-vision-grid {
grid-template-columns: 1fr;
}

.page-header h1 {
font-size: 2rem;
}
}
