.page-header {
    background: linear-gradient(135deg, #1B8CFB 0%, #0a5fc9 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.company-intro {
    padding: 4rem 0;
    background: #fff;
}

.intro-content {
    max-width: 900px;
    margin: 2rem auto;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.why-choose-us {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Compliance Showcase */
.compliance-showcase {
    padding: 4rem 0;
    background: #fff;
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.compliance-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.compliance-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.compliance-text h2::after {
    margin: 1rem 0;
}

.compliance-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reason-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(27, 140, 251, 0.2);
}

.reason-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 5rem;
    font-weight: bold;
    color: rgba(27, 140, 251, 0.1);
}

.reason-card h3 {
    color: #1B8CFB;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.reason-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.security {
    padding: 4rem 0;
    background: #fff;
}

.security-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.security-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: #1B8CFB;
    background: #fff;
    box-shadow: 0 10px 30px rgba(27, 140, 251, 0.2);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.security-card h3 {
    color: #1B8CFB;
    margin-bottom: 1rem;
}

.security-card p {
    color: #666;
    line-height: 1.6;
}

.security-statement {
    background: linear-gradient(135deg, #1B8CFB 0%, #0a5fc9 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.security-statement p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.compliance {
    padding: 4rem 0;
    background: #f8f9fa;
}

.compliance-content {
    max-width: 900px;
    margin: 2rem auto;
}

.compliance-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 2rem;
}

.partner-details {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partner-details h3 {
    color: #1B8CFB;
    margin-bottom: 1.5rem;
}

.partner-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: #555;
}

.partner-info a {
    color: #1B8CFB;
    text-decoration: none;
}

.partner-info a:hover {
    text-decoration: underline;
}

.important-notice {
    padding: 4rem 0;
    background: #fff;
}

.notice-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 2rem;
    border-radius: 5px;
}

.notice-box h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.notice-box ul {
    list-style: none;
    padding-left: 0;
}

.notice-box li {
    padding: 0.5rem 0;
    color: #856404;
    position: relative;
    padding-left: 1.5rem;
}

.notice-box li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .compliance-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .security-content {
        grid-template-columns: 1fr;
    }

    .intro-text p,
    .compliance-intro,
    .security-statement p {
        font-size: 1rem;
    }
}