body { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; margin: 0; padding: 0; line-height: 1.6; color: #333; background: #f5f5f5; }
a { color: #007bff; text-decoration: none; transition: color 0.3s; }
a:hover { text-decoration: underline; color: #0056b3; }
.container { width: 1200px; max-width: 95%; margin: 0 auto; }
img { max-width: 100%; height: auto; }

.header { background: #fff; padding: 20px 0; border-bottom: 1px solid #ddd; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-size: 24px; font-weight: bold; color: #333; text-decoration: none; }
.logo img { max-height: 50px; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; }
.nav-item { margin-left: 20px; position: relative; }
.nav-item a { color: #555; font-weight: 500; display: block; padding: 10px 0; }
.nav-item.active a { color: #007bff; }
.nav-item:hover .sub-nav { display: block; }
.sub-nav { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid #ddd; min-width: 150px; list-style: none; padding: 0; z-index: 100; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.sub-nav li { border-bottom: 1px solid #eee; }
.sub-nav li a { padding: 10px 15px; }
.sub-nav li:last-child { border-bottom: none; }

.hero {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}
.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #007bff;
    color: #fff;
    font-size: 18px;
    border-radius: 30px;
    transition: all 0.3s;
    border: 2px solid #007bff;
    text-decoration: none;
}
.cta-button:hover {
    background: transparent;
    color: #fff;
    text-decoration: none;
}

.about-section {
    background: #fff;
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 32px;
    color: #333;
    font-weight: 600;
}
.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 16px;
}
.about-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}
.vision-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 50px;
    padding: 0 20px;
}
.values-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}
.value-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border: 1px solid #f0f0f0;
}
.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.value-item i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
    display: inline-block;
}
.value-item h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}
.value-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.products-section {
    background: #f8f9fa;
    padding: 80px 0;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #007bff;
}
.product-icon {
    width: 70px;
    height: 70px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.product-card:hover .product-icon {
    background: #007bff;
}
.product-icon i {
    font-size: 28px;
    color: #007bff;
    transition: all 0.3s;
}
.product-card:hover .product-icon i {
    color: #fff;
}
.product-info h3 {
    margin: 0 0 15px;
    font-size: 1.3rem;
}
.product-info h3 a {
    color: #333;
}
.product-info h3 a:hover {
    color: #007bff;
    text-decoration: none;
}
.product-info p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}
.product-link {
    color: #007bff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}
.product-link:hover {
    gap: 10px;
    text-decoration: none;
}
.btn-view-more {
    display: inline-block;
    padding: 12px 35px;
    background: #007bff;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}
.btn-view-more:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,123,255,0.4);
    color: #fff;
    text-decoration: none;
}
@media (max-width: 992px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .products-grid { grid-template-columns: 1fr; }
}

.friend-link-section {
    background: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}
.friend-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
}
.link-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    color: #555;
    transition: all 0.3s;
    min-height: 40px;
}
.link-item img.link-logo {
    max-height: 30px;
    max-width: 120px;
    vertical-align: middle;
}
.link-item:hover {
    color: #007bff;
    border-color: #007bff;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.section-help {
    background: #fff;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #eee;
}
.section-help .section-title {
    margin-bottom: 40px;
}
.help-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    text-align: left;
}
.help-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 6px;
    color: #333;
    transition: all 0.3s;
    border: 1px solid #eee;
}
.help-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateY(-2px);
    color: #007bff;
    border-color: #007bff;
    text-decoration: none;
}
.help-item i {
    margin-right: 15px;
    color: #999;
    font-size: 18px;
}
.help-item:hover i {
    color: #007bff;
}
.help-item span {
    font-size: 15px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .help-list {
        grid-template-columns: 1fr;
    }
}
.link-apply {
    margin-top: 20px;
}
.btn-apply {
    display: inline-block;
    padding: 10px 30px;
    background: #28a745;
    color: #fff;
    border-radius: 25px;
    font-size: 14px;
    transition: background 0.3s;
    text-decoration: none;
}
.btn-apply:hover {
    background: #218838;
    color: #fff;
    text-decoration: none;
}

.section { padding: 60px 0; background: #fff; margin-bottom: 0; }
.section:nth-child(even) { background: #f9f9f9; }

.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card { background: #fff; padding: 25px; border: 1px solid #eee; transition: all 0.3s; border-radius: 4px; }
.section:nth-child(odd) .card { background: #fff; }
.section:nth-child(even) .card { background: #fff; }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-color: #007bff; }
.card-title { margin-top: 0; font-size: 18px; margin-bottom: 15px; }
.card-title a { color: #333; }
.card-title a:hover { color: #007bff; text-decoration: none; }
.card-excerpt { font-size: 14px; color: #666; line-height: 1.6; }

.article-header {
    position: relative;
    background-color: #1e3c72;
    overflow: hidden;
}
.article-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 0;
}
.article-header .container {
    position: relative;
    z-index: 1;
}

.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}
.article-body p {
    margin-bottom: 20px;
}
.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 20px 0;
}
.article-body h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #007bff;
    line-height: 1.2;
}
.article-body h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}
.article-body ul, .article-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}
.article-body li {
    margin-bottom: 8px;
}
.article-body blockquote {
    background: #f9f9f9;
    border-left: 5px solid #007bff;
    margin: 20px 0;
    padding: 15px 20px;
    color: #666;
    font-style: italic;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}
.breadcrumb a:hover {
    color: #007bff;
}

.prev-log, .next-log {
    max-width: 45%;
}
.prev-log a, .next-log a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.prev-log a:hover, .next-log a:hover {
    color: #007bff;
}

.link-item {
    transition: transform 0.3s, box-shadow 0.3s;
}
.link-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.team-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.team-member {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
    position: relative;
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e88e5, #40c4ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover::before {
    opacity: 1;
}

.member-avatar {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 0;
    border-bottom: 1px solid #f5f5f5;
    display: block;
}

.member-avatar-container {
    width: 100%;
    height: 220px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.member-info {
    padding: 12px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.member-name {
    font-size: 1.2rem;
    margin: 5px 0;
    color: #2c3e50;
    font-weight: 600;
}

.member-role {
    background: linear-gradient(135deg, #e8f3ff, #f0f7ff);
    color: #1e88e5;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 500;
    display: inline-block;
    margin: 0 0 8px;
    align-self: center;
}

.member-service {
    color: #5c6b7c;
    margin: 8px 12px;
    font-size: 0.9em;
    line-height: 1.5;
    padding: 8px 10px;
    background: #fafbfc;
    border-radius: 8px;
}

.member-contact {
    padding: 10px 15px;
    border-top: 1px solid #f5f5f5;
}

.member-contact p {
    color: #1e88e5;
    font-size: 1em;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.member-contact i {
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

#comment-place {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.comment-post h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    color: #333;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 10px;
}
.comment-post .form-group {
    margin-bottom: 20px;
}
.comment-post input[type="text"],
.comment-post textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.comment-post input[type="text"]:focus,
.comment-post textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0,123,255,0.2);
    outline: none;
}
.comment-post input[type="submit"] {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}
.comment-post input[type="submit"]:hover {
    background: #0056b3;
    transform: translateY(-2px);
}
.cancel-reply {
    float: right;
    font-size: 14px;
}
.cancel-reply a {
    color: #999;
    text-decoration: none;
}
.cancel-reply a:hover {
    color: #d9534f;
}

.page-container {
    padding-bottom: 60px;
}
.post-content p { margin-bottom: 20px; }
.post-content h2, .post-content h3, .post-content h4 { color: #333; margin-top: 30px; margin-bottom: 15px; font-weight: 600; }
.post-content h2 { font-size: 24px; border-left: 4px solid #007bff; padding-left: 15px; }
.post-content h3 { font-size: 20px; }
.post-content h4 { font-size: 18px; }
.post-content img { max-width: 100%; height: auto; display: block; margin: 20px auto; border-radius: 4px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.post-content blockquote { margin: 20px 0; padding: 15px 20px; background: #f8f9fa; border-left: 4px solid #ddd; color: #666; font-style: italic; }
.post-content pre { background: #f5f5f5; padding: 15px; border-radius: 4px; overflow-x: auto; font-family: Consolas, Monaco, 'Andale Mono', monospace; font-size: 14px; margin-bottom: 20px; }
.post-content code { background: #f5f5f5; padding: 2px 5px; border-radius: 3px; font-family: Consolas, Monaco, 'Andale Mono', monospace; font-size: 14px; color: #e83e8c; }
.post-content ul, .post-content ol { margin-bottom: 20px; padding-left: 20px; }
.post-content li { margin-bottom: 10px; }
.post-tags { margin-top: 40px; padding-top: 20px; border-top: 1px dashed #eee; }
.post-tags a { display: inline-block; padding: 5px 12px; background: #f1f3f5; color: #666; border-radius: 20px; font-size: 13px; margin-right: 10px; margin-bottom: 10px; transition: all 0.3s; }
.post-tags a:hover { background: #007bff; color: #fff; text-decoration: none; }
.post-navigation { margin-top: 30px; padding: 20px; background: #f8f9fa; border-radius: 4px; display: flex; justify-content: space-between; font-size: 14px; }
.post-navigation a { color: #555; font-weight: 500; }
.post-navigation a:hover { color: #007bff; }

.footer { background: #2d3436; color: #b2bec3; padding: 60px 0 20px; font-size: 14px; }
.footer a { color: #dfe6e9; transition: color 0.3s; text-decoration: none; }
.footer a:hover { color: #007bff; }
.footer-top { margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; }
.footer-left { margin-bottom: 30px; }
.footer-title { color: #fff; font-size: 18px; margin-top: 0; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: #007bff; }
.footer-desc { line-height: 1.8; color: #b2bec3; }
.footer-contact { display: grid; grid-template-columns: 1fr; gap: 15px; }
.contact-item { display: flex; align-items: center; }
.contact-item i { width: 30px; height: 30px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 10px; color: #fff; font-size: 14px; transition: all 0.3s; }
.contact-item:hover i { background: #007bff; transform: rotate(360deg); }
.contact-item span { color: #b2bec3; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; font-size: 13px; }
.footer-info { margin-bottom: 0; }

@media (min-width: 769px) {
    .footer-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: start;
    }
    .footer-left {
        margin-bottom: 0;
        padding-right: 50px;
    }
    .footer-contact {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container { width: 100%; padding: 0 15px; }
    .header .container { flex-direction: column; }
    .nav-list { margin-top: 20px; flex-wrap: wrap; justify-content: center; }
    .nav-item { margin: 5px 10px; }
    .hero { height: 400px; }
    .hero h1 { font-size: 32px; }
    .hero-subtitle { font-size: 18px; }
    .card-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr !important; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
    .page-container { flex-direction: column; }
    .sidebar { width: 100%; }
}
