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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #026CDF;
    background-color: #f0f7ff;
}

.nav-link.active {
    color: #026CDF;
    background-color: #e6f2ff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #026CDF 0%, #0056b3 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FFB800;
    max-width: 700px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    backdrop-filter: blur(10px);
}

.disclaimer svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.disclaimer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    font-size: 2.5rem;
    color: #026CDF;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(2, 108, 223, 0.2);
    border-color: #026CDF;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e6f2ff 0%, #cce4ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.contact-info {
    font-size: 1.2rem;
    color: #026CDF;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-desc {
    color: #666;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}

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

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(2, 108, 223, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
    color: #026CDF;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.faq-answer a {
    color: #026CDF;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: #026CDF;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

.footer-section ul li a:hover {
    color: #026CDF;
}

.footer-disclaimer {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #026CDF 0%, #0056b3 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 50px;
}

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

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Content Section */
.content-section {
    padding: 0 0 80px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    color: #026CDF;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.content-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-block ul,
.content-block ol {
    margin-left: 25px;
    color: #555;
}

.content-block li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.service-list li,
.policy-list li {
    position: relative;
    padding-left: 0;
    list-style: none;
    margin-left: 0;
}

.service-list li::before,
.policy-list li::before {
    content: '✓';
    color: #026CDF;
    font-weight: bold;
    display: inline-block;
    width: 25px;
    margin-right: 10px;
}

.notice-box {
    background-color: #f0f7ff;
    border-left: 4px solid #026CDF;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin: 25px 0;
}

.notice-box svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.notice-box h3 {
    color: #026CDF;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.notice-box p {
    margin-bottom: 10px;
}

.notice-box p:last-child {
    margin-bottom: 0;
}

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

.contact-option {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 3px solid #026CDF;
}

.contact-option h4 {
    color: #026CDF;
    margin-bottom: 10px;
}

.contact-option p {
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-note {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400 !important;
}

.help-cta {
    background: linear-gradient(135deg, #e6f2ff 0%, #cce4ff 100%);
    padding: 30px;
    border-radius: 10px;
    margin-top: 25px;
}

.help-cta p {
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
}

.policy-intro {
    margin-bottom: 40px;
}

.intro-text {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 15px;
}

.numbered-list {
    counter-reset: item;
    list-style: none;
    margin-left: 0;
}

.numbered-list li {
    counter-increment: item;
    margin-bottom: 25px;
    padding-left: 0;
}

.numbered-list li::before {
    content: counter(item);
    background-color: #026CDF;
    color: white;
    font-weight: bold;
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 15px;
}

.numbered-list li strong {
    color: #026CDF;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.numbered-list li p {
    margin-left: 45px;
    margin-bottom: 0;
}

.acknowledgment {
    background: linear-gradient(135deg, #026CDF 0%, #0056b3 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.acknowledgment p {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .nav {
        flex-direction: column;
        gap: 10px;
    }

    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .content-wrapper {
        padding: 30px 20px;
    }

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

    .numbered-list li p {
        margin-left: 0;
    }
}