:root {
--primary-color: #003d82;
--secondary-color: #0066cc;
--accent-color: #ff6b35;
--text-dark: #1a1a1a;
--text-light: #666666;
--background-light: #f8f9fa;
--white: #ffffff;
--border-color: #e0e0e0;
--success-color: #28a745;
--error-color: #dc3545;
--shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
--shadow-md: 0 4px 12px rgba(0,0,0,0.15);
--shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
--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.7;
color: var(--text-dark);
background-color: var(--white);
overflow-x: hidden;
}

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

/* Header Styles */
.primary-header {
background: var(--white);
box-shadow: var(--shadow-sm);
position: sticky;
top: 0;
z-index: 1000;
transition: var(--transition);
}

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

.logo-wrapper {
flex-shrink: 0;
}

.logo-image {
height: 60px;
width: auto;
}

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

.nav-link {
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
transition: var(--transition);
position: relative;
padding: 5px 0;
}

.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--secondary-color);
transition: var(--transition);
}

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

.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}

.mobile-toggle {
display: none;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.hamburger-line {
width: 25px;
height: 3px;
background: var(--text-dark);
margin: 3px 0;
transition: var(--transition);
}

/* Hero Section */
.hero-section {
position: relative;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
min-height: 600px;
display: flex;
align-items: center;
overflow: hidden;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.3);
}

.hero-content {
position: relative;
z-index: 2;
text-align: center;
color: var(--white);
padding: 60px 0;
}

.hero-title {
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 20px;
animation: fadeInUp 1s ease;
}

.hero-subtitle {
font-size: 1.5rem;
margin-bottom: 30px;
animation: fadeInUp 1s ease 0.2s backwards;
}

.cta-button-3d {
display: inline-block;
padding: 15px 40px;
background: var(--accent-color);
color: var(--white);
text-decoration: none;
font-size: 1.1rem;
font-weight: 600;
border-radius: 50px;
box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
transition: var(--transition);
animation: fadeInUp 1s ease 0.4s backwards;
transform: translateY(0);
}

.cta-button-3d:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
}

/* Services Section */
.services-section {
padding: 80px 0;
background: var(--background-light);
}

.section-title {
text-align: center;
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 50px;
position: relative;
}

.section-title::after {
content: '';
display: block;
width: 80px;
height: 4px;
background: var(--accent-color);
margin: 20px auto 0;
}

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

.service-card {
background: var(--white);
padding: 40px 30px;
border-radius: 10px;
box-shadow: var(--shadow-sm);
transition: var(--transition);
text-align: center;
}

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

.service-icon {
font-size: 3.5rem;
color: var(--secondary-color);
margin-bottom: 20px;
}

.service-card h3 {
font-size: 1.5rem;
color: var(--primary-color);
margin-bottom: 15px;
}

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

/* Why Choose Section */
.why-choose-section {
padding: 80px 0;
}

.why-choose-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

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

.why-choose-text h2 {
font-size: 2.2rem;
color: var(--primary-color);
margin-bottom: 30px;
}

.benefits-list {
list-style: none;
margin-bottom: 30px;
}

.benefits-list li {
padding: 12px 0;
color: var(--text-dark);
font-size: 1.1rem;
display: flex;
align-items: center;
}

.benefits-list i {
color: var(--success-color);
margin-right: 15px;
font-size: 1.3rem;
}

.secondary-button {
display: inline-block;
padding: 12px 30px;
background: var(--primary-color);
color: var(--white);
text-decoration: none;
border-radius: 5px;
transition: var(--transition);
}

.secondary-button:hover {
background: var(--secondary-color);
transform: translateX(5px);
}

/* Subscriber Section */
.subscriber-section {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.subscriber-box {
text-align: center;
color: var(--white);
max-width: 700px;
margin: 0 auto;
}

.subscriber-box h2 {
font-size: 2.5rem;
margin-bottom: 15px;
}

.subscriber-box > p {
font-size: 1.2rem;
margin-bottom: 30px;
}

.subscriber-counter {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
margin-bottom: 30px;
font-size: 2rem;
}

.counter-number {
font-weight: 700;
font-size: 2.5rem;
}

.counter-label {
font-size: 1rem;
opacity: 0.9;
}

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

.newsletter-input {
flex: 1;
padding: 15px 20px;
border: none;
border-radius: 50px;
font-size: 1rem;
}

.subscribe-btn-3d {
padding: 15px 35px;
background: var(--accent-color);
color: var(--white);
border: none;
border-radius: 50px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.subscribe-btn-3d:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Testimonials Section */
.testimonials-section {
padding: 80px 0;
background: var(--background-light);
}

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

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

.testimonial-card:hover {
box-shadow: var(--shadow-md);
}

.stars {
color: #ffc107;
margin-bottom: 15px;
font-size: 1.2rem;
}

.testimonial-text {
color: var(--text-light);
font-style: italic;
margin-bottom: 20px;
line-height: 1.8;
}

.testimonial-author {
display: flex;
flex-direction: column;
}

.testimonial-author strong {
color: var(--primary-color);
margin-bottom: 5px;
}

.testimonial-author span {
color: var(--text-light);
font-size: 0.9rem;
}

/* Blog Preview Section */
.latest-posts-section {
padding: 80px 0;
}

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

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

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

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

.blog-preview-content {
padding: 25px;
}

.blog-preview-content h3 {
margin-bottom: 15px;
}

.blog-preview-content h3 a {
color: var(--primary-color);
text-decoration: none;
transition: var(--transition);
}

.blog-preview-content h3 a:hover {
color: var(--secondary-color);
}

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

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

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

.text-center {
text-align: center;
}

/* Footer Styles */
.site-footer {
background: var(--text-dark);
color: var(--white);
padding: 60px 0 20px;
}

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

.footer-column h4 {
color: var(--white);
margin-bottom: 20px;
font-size: 1.3rem;
}

.footer-column p {
color: rgba(255, 255, 255, 0.8);
line-height: 1.8;
}

.registration-number {
margin-top: 15px;
font-size: 0.9rem;
opacity: 0.7;
}

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

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

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

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

.contact-info {
list-style: none;
}

.contact-info li {
color: rgba(255, 255, 255, 0.8);
margin-bottom: 15px;
display: flex;
align-items: flex-start;
line-height: 1.7;
}

.contact-info i {
margin-right: 10px;
color: var(--accent-color);
margin-top: 3px;
}

.contact-info a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: var(--transition);
}

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

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

/* Cookie Consent */
.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--white);
box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
padding: 25px 20px;
z-index: 10000;
display: none;
animation: slideUp 0.5s ease;
}

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

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

.cookie-text h4 {
color: var(--primary-color);
margin-bottom: 10px;
}

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

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

.cookie-btn {
padding: 10px 25px;
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(--secondary-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);
}

.cookie-link {
color: var(--secondary-color);
text-decoration: none;
font-weight: 600;
}

/* Page Hero */
.page-hero {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
padding: 80px 0;
text-align: center;
color: var(--white);
}

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

.page-hero p {
font-size: 1.3rem;
opacity: 0.9;
}

/* About Page Styles */
.about-story-section {
padding: 80px 0;
}

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

.about-text h2 {
color: var(--primary-color);
font-size: 2.5rem;
margin-bottom: 25px;
}

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

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

.mission-values-section {
padding: 80px 0;
background: var(--background-light);
}

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

.value-card {
background: var(--white);
padding: 40px 25px;
border-radius: 10px;
text-align: center;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}

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

.value-icon {
font-size: 3rem;
color: var(--secondary-color);
margin-bottom: 20px;
}

.value-card h3 {
color: var(--primary-color);
margin-bottom: 15px;
}

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

/* Team Section */
.team-section {
padding: 80px 0;
}

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

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

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

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

.team-member-card h3 {
color: var(--primary-color);
margin: 20px 0 5px;
padding: 0 20px;
}

.member-position {
color: var(--secondary-color);
font-weight: 600;
margin-bottom: 15px;
}

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

/* Achievements Section */
.achievements-section {
padding: 80px 0;
background: var(--background-light);
}

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

.achievement-item {
text-align: center;
padding: 30px;
background: var(--white);
border-radius: 10px;
box-shadow: var(--shadow-sm);
}

.achievement-number {
font-size: 3rem;
font-weight: 700;
color: var(--secondary-color);
margin-bottom: 10px;
}

.achievement-item p {
color: var(--text-light);
font-size: 1.1rem;
}

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

.cta-section h2 {
font-size: 2.5rem;
margin-bottom: 15px;
}

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

/* Blog Listing */
.blog-listing-section {
padding: 80px 0;
}

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

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

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

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

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

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

.blog-category {
position: absolute;
top: 15px;
left: 15px;
background: var(--accent-color);
color: var(--white);
padding: 5px 15px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
}

.blog-post-content {
padding: 25px;
}

.blog-meta {
display: flex;
gap: 20px;
margin-bottom: 15px;
font-size: 0.9rem;
color: var(--text-light);
}

.blog-post-content h2 {
font-size: 1.4rem;
margin-bottom: 15px;
}

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

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

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

.read-more-link {
color: var(--secondary-color);
text-decoration: none;
font-weight: 600;
transition: var(--transition);
display: inline-flex;
align-items: center;
gap: 5px;
}

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

/* Newsletter CTA */
.newsletter-cta-section {
padding: 80px 0;
background: var(--background-light);
}

.newsletter-box {
text-align: center;
max-width: 700px;
margin: 0 auto;
}

.newsletter-box h2 {
color: var(--primary-color);
font-size: 2.5rem;
margin-bottom: 15px;
}

.newsletter-box p {
color: var(--text-light);
font-size: 1.2rem;
margin-bottom: 30px;
}

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

.newsletter-signup-form input {
flex: 1;
padding: 15px 20px;
border: 1px solid var(--border-color);
border-radius: 50px;
font-size: 1rem;
}

/* Contact Page */
.contact-section {
padding: 80px 0;
}

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

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

.contact-info-block {
background: var(--background-light);
padding: 30px;
border-radius: 10px;
}

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

.info-item:last-child {
margin-bottom: 0;
}

.info-icon {
flex-shrink: 0;
width: 50px;
height: 50px;
background: var(--secondary-color);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
}

.info-text h3 {
color: var(--primary-color);
margin-bottom: 8px;
font-size: 1.1rem;
}

.info-text p,
.info-text a {
color: var(--text-light);
line-height: 1.7;
text-decoration: none;
}

.info-text a:hover {
color: var(--secondary-color);
}

.registration-info {
margin-top: 30px;
padding: 20px;
background: var(--white);
border-radius: 5px;
border-left: 4px solid var(--accent-color);
}

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

.contact-form {
background: var(--background-light);
padding: 40px;
border-radius: 10px;
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}

.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 15px;
border: 1px 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(--secondary-color);
box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.submit-btn-3d {
width: 100%;
padding: 15px;
background: var(--accent-color);
color: var(--white);
border: none;
border-radius: 5px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.submit-btn-3d:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Map Section */
.map-section {
padding: 80px 0;
background: var(--background-light);
}

.map-container {
margin-top: 40px;
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow-md);
}

.map-container iframe {
width: 100%;
height: 450px;
border: none;
}

/* Success Modal */
.success-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
display: none;
align-items: center;
justify-content: center;
z-index: 10000;
}

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

.modal-content {
background: var(--white);
padding: 50px;
border-radius: 15px;
text-align: center;
max-width: 500px;
animation: scaleIn 0.3s ease;
}

.modal-icon {
font-size: 5rem;
color: var(--success-color);
margin-bottom: 20px;
}

.modal-content h3 {
color: var(--primary-color);
font-size: 2rem;
margin-bottom: 15px;
}

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

.modal-close-btn {
padding: 12px 40px;
background: var(--secondary-color);
color: var(--white);
border: none;
border-radius: 5px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
}

.modal-close-btn:hover {
background: var(--primary-color);
}

/* Blog Post Single */
.blog-post-single {
padding: 60px 0;
}

.post-header {
max-width: 900px;
margin: 0 auto 40px;
}

.post-meta-info {
display: flex;
gap: 25px;
margin-bottom: 20px;
font-size: 0.95rem;
color: var(--text-light);
flex-wrap: wrap;
}

.post-category {
background: var(--accent-color);
color: var(--white);
padding: 5px 15px;
border-radius: 20px;
font-weight: 600;
}

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

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

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

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

.lead-paragraph {
font-size: 1.2rem;
color: var(--text-dark);
line-height: 1.8;
margin-bottom: 30px;
font-weight: 500;
}

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

.post-body p {
color: var(--text-light);
margin-bottom: 20px;
}

.post-body ul,
.post-body ol {
margin: 20px 0;
padding-left: 30px;
}

.post-body li {
color: var(--text-light);
margin-bottom: 10px;
line-height: 1.8;
}

/* Post Sidebar */
.post-sidebar {
position: sticky;
top: 100px;
align-self: start;
}

.sidebar-widget {
background: var(--background-light);
padding: 25px;
border-radius: 10px;
margin-bottom: 30px;
}

.sidebar-widget h3 {
color: var(--primary-color);
margin-bottom: 20px;
font-size: 1.3rem;
}

.recent-posts-list,
.categories-list {
list-style: none;
}

.recent-posts-list li,
.categories-list li {
margin-bottom: 12px;
}

.recent-posts-list a,
.categories-list a {
color: var(--text-dark);
text-decoration: none;
transition: var(--transition);
display: block;
padding: 8px 0;
}

.recent-posts-list a:hover,
.categories-list a:hover {
color: var(--secondary-color);
padding-left: 10px;
}

/* Post Navigation */
.post-navigation {
display: flex;
justify-content: space-between;
max-width: 900px;
margin: 60px auto 0;
gap: 20px;
flex-wrap: wrap;
}

.prev-post,
.next-post,
.back-to-blog {
padding: 12px 25px;
background: var(--secondary-color);
color: var(--white);
text-decoration: none;
border-radius: 5px;
transition: var(--transition);
}

.prev-post:hover,
.next-post:hover,
.back-to-blog:hover {
background: var(--primary-color);
transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}

@keyframes scaleIn {
from {
transform: scale(0.8);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}

/* Responsive Design */
@media (max-width: 968px) {
.nav-menu {
position: fixed;
left: -100%;
top: 80px;
flex-direction: column;
background: var(--white);
width: 100%;
text-align: center;
transition: 0.3s;
box-shadow: var(--shadow-lg);
padding: 30px 0;
}

.nav-menu.active {
left: 0;
}

.mobile-toggle {
display: flex;
}

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

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

.why-choose-content,
.about-grid {
grid-template-columns: 1fr;
}

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

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

.post-sidebar {
position: static;
}

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

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

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

@media (max-width: 600px) {
.hero-title {
font-size: 2rem;
}

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

.page-hero h1 {
font-size: 2.2rem;
}

.services-grid,
.blog-posts-grid,
.blog-preview-grid {
grid-template-columns: 1fr;
}

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

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

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