* {
    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-color: #f8f9fa;
}

.main-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-primary {
    padding: 0;
}

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

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

.site-logo {
    border-radius: 50%;
    border: 3px solid #fff;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

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

.navigation-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.main-content {
    min-height: calc(100vh - 400px);
}

.hero-section {
    background: linear-gradient(to bottom, #ffffff 0%, #e8f4f8 100%);
    padding: 4rem 2rem;
    text-align: center;
}

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

.hero-title {
    font-size: 2.8rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #546e7a;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-heading {
    font-size: 2.2rem;
    color: #1e3c72;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.section-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-section {
    background-color: #ffffff;
}

.advantages-section {
    background-color: #f8f9fa;
}

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

.advantage-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.advantage-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.advantage-card h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-card p {
    color: #4a5568;
    line-height: 1.7;
}

.history-block {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 3rem 2rem;
}

.history-block .section-heading {
    color: #ffffff;
}

.history-content {
    max-width: 800px;
    margin: 0 auto;
}

.history-date {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.history-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.email-subscribe {
    background-color: #ffffff;
    padding: 3rem 2rem;
}

.subscribe-text {
    text-align: center;
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

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

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #1e3c72;
}

.subscribe-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.blog-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.blog-posts {
    background-color: #f8f9fa;
}

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

.post-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.post-content {
    padding: 2rem;
}

.post-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.post-content h2 a {
    color: #1e3c72;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content h2 a:hover {
    color: #2a5298;
}

.post-excerpt {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #1e3c72;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #2a5298;
}

.about-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.mission-section {
    background-color: #ffffff;
}

.mission-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-section {
    background-color: #f8f9fa;
}

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

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

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

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 5px solid #1e3c72;
}

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

.member-position {
    color: #2a5298;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #4a5568;
    line-height: 1.7;
}

.achievements-section {
    background-color: #ffffff;
}

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

.achievement-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    color: #ffffff;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.contact-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-info-section {
    background-color: #f8f9fa;
}

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

.contact-details {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-details h2 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #2a5298;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-item a {
    color: #1e3c72;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #2a5298;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 2rem;
}

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

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

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

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

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

.submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.map-section {
    background-color: #ffffff;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.post-article {
    background-color: #ffffff;
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.article-title {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
}

.article-meta {
    color: #546e7a;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.article-featured-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #2c3e50;
}

.article-content h2 {
    font-size: 1.9rem;
    color: #1e3c72;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

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

.article-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.back-to-blog {
    display: inline-block;
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: #2a5298;
}

.site-footer {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #ffd700;
}

.footer-section p {
    line-height: 1.7;
    color: #cbd5e0;
    margin-bottom: 0.8rem;
}

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

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

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

.footer-links a:hover {
    color: #ffd700;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #cbd5e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    padding: 2rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    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.7;
}

.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: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.accept-all {
    background-color: #4caf50;
    color: #ffffff;
}

.customize {
    background-color: #ff9800;
    color: #ffffff;
}

.decline {
    background-color: #f44336;
    color: #ffffff;
}

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

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

.modal-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

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

.modal-content p {
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.modal-close {
    padding: 0.9rem 2.5rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .navigation-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .advantages-grid,
    .posts-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
}
