* {
    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;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

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

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

.brand-section {
    display: flex;
    align-items: center;
    gap: 14px;
}

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

.brand-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-menu a {
    color: #e8f1f8;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.hero-banner {
    background: linear-gradient(rgba(30, 58, 95, 0.85), rgba(44, 82, 130, 0.85)), url('images/1.jpg') center/cover;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 60px 25px;
}

.overlay-content {
    max-width: 850px;
}

.main-headline {
    font-size: 48px;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.sub-description {
    font-size: 22px;
    margin-bottom: 35px;
    line-height: 1.6;
    color: #e8f1f8;
}

.cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 16px 42px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

.info-pillars {
    padding: 70px 25px;
    background-color: #ffffff;
}

.container-grid {
    max-width: 1300px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1e3a5f;
    font-weight: 700;
}

.pillars-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.pillar-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

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

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c5282;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-content p {
    color: #555;
    line-height: 1.7;
}

.summary-block {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    padding: 50px 25px;
}

.container-summary {
    max-width: 950px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.container-summary h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.key-points {
    list-style: none;
    margin-top: 20px;
}

.key-points li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
}

.key-points i {
    color: #27ae60;
    font-size: 20px;
}

.page-header-section {
    background: linear-gradient(135deg, #2c5282 0%, #1e3a5f 100%);
    padding: 60px 25px;
    text-align: center;
    color: #ffffff;
}

.page-header-section h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.page-header-section p {
    font-size: 20px;
    color: #e8f1f8;
}

.about-intro {
    padding: 60px 25px;
    background: #ffffff;
}

.container-about {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.container-about img {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.intro-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.intro-text p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: #555;
}

.team-section {
    padding: 60px 25px;
    background: #f8f9fa;
}

.container-team {
    max-width: 1300px;
    margin: 0 auto;
}

.container-team h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1e3a5f;
}

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

.team-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.team-card img {
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #2c5282;
}

.team-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1e3a5f;
}

.team-card .position {
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 15px;
    font-size: 16px;
}

.team-card p {
    color: #555;
    line-height: 1.7;
}

.values-section {
    padding: 60px 25px;
    background: #ffffff;
}

.container-values {
    max-width: 1100px;
    margin: 0 auto;
}

.container-values h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1e3a5f;
}

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

.value-item {
    text-align: center;
    padding: 35px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: #ecf0f1;
    transform: translateY(-5px);
}

.value-item i {
    font-size: 50px;
    color: #2c5282;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1e3a5f;
}

.value-item p {
    color: #555;
    line-height: 1.7;
}

.blog-list {
    padding: 60px 25px;
    background: #ffffff;
}

.container-blog {
    max-width: 1100px;
    margin: 0 auto;
}

.blog-post-preview {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-post-preview:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.post-content {
    padding: 30px;
}

.post-content h2 a {
    color: #1e3a5f;
    text-decoration: none;
    font-size: 28px;
    transition: color 0.3s ease;
}

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

.post-meta {
    color: #7f8c8d;
    font-size: 15px;
    margin: 12px 0 18px 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.read-more {
    display: inline-block;
    margin-top: 18px;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #c0392b;
    gap: 8px;
}

.contact-section {
    padding: 60px 25px;
    background: #f8f9fa;
}

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

.contact-info img {
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1e3a5f;
}

.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item i {
    font-size: 26px;
    color: #2c5282;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1e3a5f;
}

.info-item p {
    color: #555;
    line-height: 1.7;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1e3a5f;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #dfe6e9;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5282;
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.submit-btn {
    background-color: #2c5282;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background-color: #1e3a5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 82, 130, 0.3);
}

.form-disclaimer {
    margin-top: 25px;
    padding: 20px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.form-disclaimer p {
    color: #856404;
    line-height: 1.6;
    font-size: 14px;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

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

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

.modal-content i {
    font-size: 70px;
    color: #27ae60;
    margin-bottom: 20px;
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1e3a5f;
}

.modal-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.modal-btn {
    background-color: #2c5282;
    color: #ffffff;
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background-color: #1e3a5f;
}

.post-single {
    padding: 60px 25px;
    background: #ffffff;
}

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

.post-header {
    margin-bottom: 35px;
}

.post-header h1 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #1e3a5f;
}

.post-featured-image {
    border-radius: 12px;
    margin-bottom: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.post-single .post-content h2 {
    font-size: 30px;
    margin: 35px 0 20px;
    color: #2c5282;
}

.post-single .post-content h3 {
    font-size: 24px;
    margin: 28px 0 16px;
    color: #34495e;
}

.post-single .post-content p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: #444;
    font-size: 17px;
}

.summary-box {
    background: #e8f4f8;
    border-left: 5px solid #2c5282;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.summary-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e3a5f;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-box p,
.summary-box ul {
    color: #2c3e50;
    line-height: 1.8;
}

.post-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #ecf0f1;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2c5282;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #1e3a5f;
    gap: 14px;
}

.main-footer {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: #e8f1f8;
    padding: 50px 25px 25px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 35px;
}

.footer-section h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p,
.footer-section ul {
    line-height: 1.8;
    color: #e8f1f8;
}

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

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

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

.footer-section a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #bdc3c7;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.3);
    z-index: 1500;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #229954;
}

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
}

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.cookie-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 5px;
    }
    
    .main-headline {
        font-size: 32px;
    }
    
    .sub-description {
        font-size: 18px;
    }
    
    .pillars-wrapper {
        grid-template-columns: 1fr;
    }
    
    .container-about {
        grid-template-columns: 1fr;
    }
    
    .container-contact {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}