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

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #305B83;
    background: #f8f9fa;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); 
    z-index: 1;
}

.header-wrapper {
    position: relative;
    width: 100%;
    min-height: 50vh;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero {
    position: relative;
    z-index: 2;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    max-width: 900px;
}

.hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(229, 226, 226, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero p {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    max-width: 600px;
    color: white;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.7;
}

.breadcrumb {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: #99A9B7;
}

.breadcrumb a {
    color: #1487BE;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #0f6a9a;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.intro-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.intro-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #305B83;
    margin-bottom: 1rem;
}

.intro-section p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
}

.content-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 3.5rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.last-updated {
    display: inline-block;
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    color: white;
    background: linear-gradient(135deg, #1487BE 0%, #0f6a9a 100%);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.section-block {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #f0f0f0;
}

.section-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    color: #305B83;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

h2::before {
    content: '';
    width: 4px;
    height: 28px;
    background: linear-gradient(180deg, #1487BE 0%, #764ba2 100%);
    border-radius: 2px;
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #1487BE;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

p {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

strong {
    color: #305B83;
    font-weight: 600;
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

ul li {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.9;
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

ul li::marker {
    color: #1487BE;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-left: 5px solid #1487BE;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '🔒';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 40px;
    opacity: 0.15;
}

.highlight-box p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 17px;
    color: #305B83;
}

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

.info-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e8e9ea;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: white;
    border-color: #1487BE;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(20, 135, 190, 0.15);
}

.info-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #305B83;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-card p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.7;
}

.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.contact-section h3 {
    margin-top: 0;
    color: white;
    font-size: 24px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.contact-info {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-info-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: white;
}

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

.contact-info-line strong {
    color: white;
    min-width: 100px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1487BE;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(20, 135, 190, 0.3);
    margin-top: 2rem;
}

.btn-back:hover {
    background: #0f6a9a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(20, 135, 190, 0.4);
}

footer {
    background: linear-gradient(135deg, rgb(30, 30, 30) 0%, rgb(20, 20, 20) 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 5rem;
}

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

footer p {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: #99A9B7;
    margin-bottom: 0.5rem;
}

.footer-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #99A9B7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .content-card {
        padding: 2rem 1.5rem;
    }

    h2 {
        font-size: 24px;
    }

    h2::before {
        height: 24px;
    }

    h3 {
        font-size: 18px;
    }

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

    .contact-section {
        padding: 2rem 1.5rem;
    }

    .container {
        padding: 3rem 1.5rem;
    }
}