/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* 更柔和的背景色 */
    color: #333;
    line-height: 1.7; /* 增加行高，提高可读性 */
}

.container {
    width: 85%; /* 略微增加宽度 */
    margin: auto;
    overflow: hidden;
    padding: 30px 0; /* 增加 padding */
}

/* Header Styles */
header {
    background: #fff; /* 白色背景 */
    color: #333; /* 深色文字 */
    padding: 20px 0;
    border-bottom: 1px solid #eee; /* 更细的边框 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* 轻微阴影 */
    position: sticky; /* 保持顶部 */
    top: 0;
    z-index: 100;
}

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

header h1 {
    margin: 0;
    font-size: 28px; /* 增大字号 */
    color: #e8491d; /* 主题色 */
}

header nav a {
    color: #555; /* 稍微柔和的颜色 */
    text-decoration: none;
    padding: 10px 15px; /* 增加 padding */
    border-radius: 5px; /* 圆角 */
    transition: all 0.3s ease; /* 过渡效果 */
}

header nav a:hover {
    background-color: #f2f2f2; /* Hover 效果 */
    color: #e8491d;
}


/* 动态标题样式 */
#dynamic-title {
    font-size: 32px;
    /*color: #333; !* 默认颜色 *!*/
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* 文字阴影 */
    display: inline-block; /* 确保每个字都在同一行 */
}

#dynamic-title span {
    position: relative;
    display: inline-block;
    color: #333;
    /*animation: neonGlow 2s ease-in-out infinite alternate; !* 应用霓虹灯效果 *!*/
}

/* 霓虹灯效果动画 */
@keyframes neonGlow {
    0% {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;
        color: #e8491d;
    }
    100% {
        text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 6px #fff;
        color: #333;
    }
}

/* 颜色渐变动画 */
@keyframes colorChange {
    0% {
        color: #e8491d;
    }
    50% {
        color: #f39c12;
    }
    100% {
        color: #d35400;
    }
}

/* Hero Section Styles */
#hero {
    background: linear-gradient(135deg, #43CBFF 0%, #9708CC 100%); /* 保持渐变背景 */
    color: #fff;
    text-align: center;
    padding: 120px 0; /* 增加 padding */
    position: relative; /* 相对定位 */
    overflow: hidden; /* 隐藏溢出 */
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://cdn.pixabay.com/photo/2018/01/27/03/57/stars-3109428_1280.jpg') repeat; /* 星空背景 */
    opacity: 0.1; /* 透明度 */
    z-index: 0; /* 放置在底层 */
}

#hero .container {
    position: relative; /* 相对定位，使内容位于背景之上 */
    z-index: 1;
}

#hero h2 {
    font-size: 42px; /* 更大的字号 */
    margin-bottom: 15px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* 文字阴影 */
}

#hero p {
    font-size: 20px;
    color: #eee; /* 更柔和的颜色 */
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px; /* 增加 padding */
    background-color: #e8491d;
    color: #fff;
    text-decoration: none;
    border-radius: 8px; /* 更圆润的圆角 */
    margin-top: 20px;
    font-size: 18px; /* 增大字号 */
    transition: all 0.3s ease; /* 过渡效果 */
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.2); /* 阴影 */
}

.cta-button:hover {
    background-color: #c63914;
    transform: translateY(-2px); /* 上移效果 */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3); /* 更强的阴影 */
}

/* About Section Styles */
#about {
    padding: 60px 0; /* 增加 padding */
    background-color: #fff;
}

#about h2 {
    text-align: center;
    margin-bottom: 40px; /* 增加 margin */
    font-size: 36px; /* 增大字号 */
    color: #e8491d; /* 主题色 */
}

#about p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.about-content {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-top: 30px; /* 增加 margin */
}

.about-item {
    flex: 1;
    padding: 30px; /* 增加 padding */
    border-radius: 10px; /* 圆角 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 阴影 */
    transition: all 0.3s ease; /* 过渡效果 */
}

.about-item:hover {
    transform: translateY(-5px); /* 上移效果 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 更强的阴影 */
}

.about-item i {
    margin-bottom: 20px;
    color: #e8491d; /* 主题色 */
}

.about-item h3 {
    color: #e8491d;
    font-size: 24px;
    margin-bottom: 15px;
}

/* Services Section Styles */
#services {
    background-color: #f9f9f9; /* 柔和的背景色 */
    padding: 60px 0; /* 增加 padding */
}

#services h2 {
    text-align: center;
    margin-bottom: 40px; /* 增加 margin */
    font-size: 36px; /* 增大字号 */
    color: #e8491d; /* 主题色 */
}

#services p {
    font-size: 18px;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 增大最小宽度 */
    gap: 30px;
}

.service-item {
    background-color: #fff;
    padding: 30px; /* 增加 padding */
    text-align: center;
    border-radius: 10px; /* 圆角 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 阴影 */
    transition: all 0.3s ease; /* 过渡效果 */
}

.service-item:hover {
    transform: translateY(-5px); /* 上移效果 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 更强的阴影 */
}

.service-item i {
    margin-bottom: 20px;
    color: #e8491d; /* 主题色 */
}

.service-item h3 {
    color: #e8491d;
    font-size: 22px; /* 稍微增大字号 */
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    color: #555;
}

/* Products Section Styles */
#products {
    padding: 60px 0; /* 增加 padding */
    background-color: #fff;
}

#products h2 {
    text-align: center;
    margin-bottom: 40px; /* 增加 margin */
    font-size: 36px; /* 增大字号 */
    color: #e8491d; /* 主题色 */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* 增大最小宽度 */
    gap: 30px;
}

.product-item {
    background-color: #f9f9f9;
    padding: 30px; /* 增加 padding */
    border-radius: 10px; /* 圆角 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 阴影 */
    transition: all 0.3s ease; /* 过渡效果 */
}

.product-item:hover {
    transform: translateY(-5px); /* 上移效果 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 更强的阴影 */
}

.product-item h3 {
    color: #e8491d;
    margin-bottom: 15px;
    font-size: 24px; /* 增大字号 */
}

.product-item ul {
    list-style: none;
    padding: 0;
}

.product-item li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

/* Contact Section Styles */
#contact {
    padding: 60px 0; /* 增加 padding */
    background-color: #f4f4f4;
    text-align: center;
}

#contact h2 {
    margin-bottom: 30px; /* 增加 margin */
    font-size: 36px; /* 增大字号 */
    color: #e8491d; /* 主题色 */
}

#contact p {
    margin-bottom: 15px;
    font-size: 18px;
    color: #555;
}

/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 25px 0; /* 增加 padding */
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%; /* 更大的宽度 */
    }

    header .container {
        flex-direction: column;
        text-align: center;
    }

    header nav {
        margin-top: 15px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-item {
        margin-bottom: 30px;
    }

    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 减小最小宽度 */
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 减小最小宽度 */
    }

    #hero h2 {
        font-size: 36px; /* 减小字号 */
    }

    #hero p {
        font-size: 18px; /* 减小字号 */
    }
}
