/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* 头部样式 */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1a3e6e;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s;
    padding: 8px 12px;
    border-radius: 4px;
}

nav ul li a:hover,
nav ul li a.active {
    color: #1a3e6e;
    background-color: #e3f2fd;
}

/* 主要内容区域 */
main {
    min-height: calc(100vh - 200px);
}

.page-header {
    background: linear-gradient(135deg, #1a3e6e 0%, #2c5a99 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* 首页特有样式 */
.hero {
    background: linear-gradient(rgba(26, 62, 110, 0.8), rgba(26, 62, 110, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a3e6e"/><path d="M0 0L100 100M100 0L0 100" stroke="%232c5a99" stroke-width="1"/></svg>');
    background-size: cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background-color: #ff6b35;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid #ff6b35;
}

.btn:hover {
    background-color: transparent;
    color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.intro {
    padding: 80px 0;
    background-color: #fff;
}

.intro h2 {
    text-align: center;
    font-size: 36px;
    color: #1a3e6e;
    margin-bottom: 50px;
}

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

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
}

.news {
    padding: 80px 0;
    background-color: #f0f7ff;
}

.news h2 {
    text-align: center;
    font-size: 36px;
    color: #1a3e6e;
    margin-bottom: 50px;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-list.home {
    grid-template-columns: repeat(auto-fit, minmax(1000px, 1fr));
}

.news-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-item h3 {
    color: #1a3e6e;
    margin-bottom: 10px;
    font-size: 20px;
}

.date {
    color: #ff6b35;
    font-weight: bold;
    margin-bottom: 15px;
}

.services {
    padding: 80px 0;
    background-color: #fff;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    color: #1a3e6e;
    margin-bottom: 50px;
}

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

.service-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: #f0f7ff;
    transition: all 0.3s;
}

.service-item:hover {
    background-color: #1a3e6e;
    color: white;
    transform: scale(1.05);
}

.icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.cases {
    padding: 80px 0;
    background-color: #f0f7ff;
}

.cases h2 {
    text-align: center;
    font-size: 36px;
    color: #1a3e6e;
    margin-bottom: 50px;
}

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

.case-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.case-item:hover {
    transform: translateY(-10px);
}

.case-image {
    font-size: 60px;
    text-align: center;
    padding: 30px;
    background-color: #e3f2fd;
}

.case-item h3 {
    color: #1a3e6e;
    padding: 0 20px;
    margin: 20px 0 10px;
}

.case-item p {
    padding: 0 20px;
    margin-bottom: 15px;
    color: #666;
}

.careers {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a3e6e 0%, #2c5a99 100%);
    color: white;
    text-align: center;
}

.careers h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.careers-content {
    color: #000000;
}

.careers-content p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

/* 关于我们页面 */
.about-content {
    padding: 60px 0;
    background-color: #fff;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h3 {
    font-size: 28px;
    color: #1a3e6e;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e3f2fd;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #1a3e6e;
}

.timeline li {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-year {
    position: absolute;
    left: -30px;
    top: 0;
    background-color: #1a3e6e;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
}

.timeline-content h4 {
    color: #1a3e6e;
    margin-bottom: 10px;
}

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

.culture-item {
    background-color: #f0f7ff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.culture-item h4 {
    color: #1a3e6e;
    margin-bottom: 15px;
    font-size: 20px;
}

.honors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.honor-item {
    background-color: #e3f2fd;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
    color: #1a3e6e;
}

/* 产品中心页面 */
.products-content {
    padding: 60px 0;
    background-color: #fff;
}

.product-category {
    margin-bottom: 60px;
}

.product-category h3 {
    font-size: 28px;
    color: #1a3e6e;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e3f2fd;
}

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

.product-item {
    background-color: #f0f7ff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.product-item:hover {
    background-color: #1a3e6e;
    color: white;
    transform: translateY(-10px);
}

.product-image {
    font-size: 50px;
    margin-bottom: 20px;
}

.product-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a3e6e;
}

.support-info ul {
    padding-left: 20px;
    margin: 20px 0;
}

.support-info li {
    margin-bottom: 10px;
}

/* 服务中心页面 */
.services-content {
    padding: 60px 0;
    background-color: #fff;
}

.service-category {
    margin-bottom: 60px;
}

.service-category h3 {
    font-size: 28px;
    color: #1a3e6e;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e3f2fd;
}

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

.service-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: #f0f7ff;
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a3e6e;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #1a3e6e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    margin: 0 auto 20px;
}

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

.promise-item {
    background-color: #f0f7ff;
    padding: 30px;
    border-radius: 10px;
}

.promise-item h4 {
    color: #1a3e6e;
    margin-bottom: 15px;
}

.service-network ul {
    padding-left: 20px;
    margin-top: 20px;
}

.service-network li {
    margin-bottom: 10px;
}

/* 成功案例页面 */
.cases-content {
    padding: 60px 0;
    background-color: #fff;
}

.case-filter {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: #e3f2fd;
    color: #1a3e6e;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #1a3e6e;
    color: white;
}

.case-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-location {
    color: #ff6b35;
    font-weight: bold;
    margin-bottom: 10px;
}

.case-desc {
    flex-grow: 1;
    margin-bottom: 15px;
}

.case-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.cases-summary {
    margin-top: 60px;
    text-align: center;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    background-color: #1a3e6e;
    color: white;
    padding: 30px;
    border-radius: 10px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
}

/* 新闻资讯页面 */
.news-content {
    padding: 60px 0;
    background-color: #fff;
}

.news-filter {
    text-align: center;
    margin-bottom: 40px;
}

.news-item {
    display: flex;
    padding: 30px;
    background-color: #f0f7ff;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.news-item:hover {
    background-color: #e3f2fd;
    transform: translateY(-5px);
}

.news-date {
    text-align: center;
    padding: 15px;
    background-color: #1a3e6e;
    color: white;
    border-radius: 10px;
    min-width: 100px;
    margin-right: 30px;
}

.day {
    font-size: 24px;
    font-weight: bold;
}

.news-info {
    flex-grow: 1;
}

.news-info h3 {
    color: #1a3e6e;
    margin-bottom: 10px;
}

.news-meta {
    display: flex;
    margin-bottom: 15px;
}

.news-meta span {
    margin-right: 20px;
    font-size: 14px;
}

.category {
    background-color: #ff6b35;
    color: white;
    padding: 3px 10px;
    border-radius: 10px;
}

.news-summary {
    margin-bottom: 20px;
    color: #555;
}

.read-more {
    color: #1a3e6e;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.read-more:hover {
    color: #ff6b35;
}

.pagination {
    text-align: center;
    margin-top: 40px;
}

.page-link {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background-color: #e3f2fd;
    color: #1a3e6e;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.page-link:hover,
.page-link.active {
    background-color: #1a3e6e;
    color: white;
}

/* 知识库页面 */
.knowledge-content {
    padding: 60px 0;
    background-color: #fff;
}

.knowledge-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    background-color: #f0f7ff;
    padding: 30px;
    border-radius: 10px;
}

.category-card h3 {
    color: #1a3e6e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e3f2fd;
}

.category-card ul {
    list-style: none;
}

.category-card li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ccc;
}

.category-card a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.category-card a:hover {
    color: #ff6b35;
    padding-left: 10px;
}

.knowledge-search {
    margin-bottom: 60px;
}

.search-box {
    display: flex;
    max-width: 500px;
    margin: 20px 0;
}

.search-box input {
    flex-grow: 1;
    padding: 15px;
    border: 2px solid #e3f2fd;
    border-radius: 30px 0 0 30px;
    outline: none;
}

.search-box button {
    background-color: #1a3e6e;
    color: white;
    border: none;
    padding: 0 30px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.search-box button:hover {
    background-color: #ff6b35;
}

.latest-knowledge {
    margin-top: 60px;
}

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

.knowledge-item {
    background-color: #f0f7ff;
    padding: 25px;
    border-radius: 10px;
}

.knowledge-meta {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    font-size: 14px;
}

.knowledge-summary {
    color: #555;
}

/* 常见问题页面 */
.faq-content {
    padding: 60px 0;
    background-color: #fff;
}

.faq-categories {
    text-align: center;
    margin-bottom: 40px;
}

.category-btn {
    background-color: #e3f2fd;
    color: #1a3e6e;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn:hover,
.category-btn.active {
    background-color: #1a3e6e;
    color: white;
}

.faq-item {
    background-color: #f0f7ff;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    color: #1a3e6e;
    font-size: 18px;
}

.toggle-icon {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: #555;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 20px;
    margin: 15px 0;
}

.faq-answer li {
    margin-bottom: 10px;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-contact {
    background-color: #e3f2fd;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
}

.faq-contact h3 {
    color: #1a3e6e;
    margin-bottom: 20px;
}

.faq-contact a {
    color: #1a3e6e;
    font-weight: bold;
    text-decoration: none;
}

.faq-contact a:hover {
    color: #ff6b35;
}

/* 行业热点页面 */
.industry-content {
    padding: 60px 0;
    background-color: #fff;
}

.industry-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.topic-card {
    background-color: #f0f7ff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.topic-card:hover {
    background-color: #1a3e6e;
    color: white;
    transform: translateY(-10px);
}

.topic-image {
    font-size: 50px;
    margin-bottom: 20px;
}

.topic-card h3 {
    color: #1a3e6e;
    margin-bottom: 15px;
    font-size: 22px;
}

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

.analysis-item {
    background-color: #f0f7ff;
    padding: 30px;
    border-radius: 10px;
}

.analysis-meta {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    font-size: 14px;
    color: #666;
}

.analysis-summary {
    color: #555;
}

.industry-reports {
    margin-top: 60px;
}

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

.report-item {
    background-color: #e3f2fd;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.report-item h4 {
    color: #1a3e6e;
    margin-bottom: 15px;
}

.download-btn {
    display: inline-block;
    background-color: #1a3e6e;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
    margin-top: 15px;
}

.download-btn:hover {
    background-color: #ff6b35;
}

/* 人才招聘页面 */
.careers-content {
    padding: 60px 0;
    background-color: #fff;
}

.careers-intro {
    text-align: center;
    margin-bottom: 60px;
}

.careers-intro h3 {
    color: #1a3e6e;
    font-size: 36px;
    margin-bottom: 20px;
}

.careers-intro p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
}

.culture-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.culture,
.benefits {
    background-color: #f0f7ff;
    padding: 30px;
    border-radius: 10px;
}

.culture h3,
.benefits h3 {
    color: #1a3e6e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e3f2fd;
}

.culture ul,
.benefits ul {
    list-style: none;
}

.culture li,
.benefits li {
    padding: 10px 0;
    border-bottom: 1px dashed #ccc;
}

.positions-list {
    margin-bottom: 60px;
}

.position-item {
    background-color: #f0f7ff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.position-item h4 {
    color: #1a3e6e;
    font-size: 22px;
    margin-bottom: 15px;
}

.position-meta {
    display: flex;
    margin-bottom: 20px;
}

.position-meta span {
    background-color: #1a3e6e;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    margin-right: 15px;
}

.position-desc ul {
    padding-left: 20px;
    margin: 15px 0;
}

.position-desc li {
    margin-bottom: 10px;
}

.apply-btn {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 20px;
}

.apply-btn:hover {
    background-color: #1a3e6e;
    transform: translateY(-3px);
}

.application-process {
    margin-top: 60px;
}

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

/* 联系我们页面 */
.contact-content {
    padding: 60px 0;
    background-color: #fff;
}

.contact-info {
    margin-bottom: 60px;
}

.contact-info h3 {
    color: #1a3e6e;
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e3f2fd;
}

.company-info p {
    font-size: 18px;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.departments {
    margin-bottom: 60px;
}

.departments h3 {
    color: #1a3e6e;
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e3f2fd;
}

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

.department-item {
    background-color: #f0f7ff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.department-item h4 {
    color: #1a3e6e;
    margin-bottom: 20px;
    font-size: 20px;
}

.department-item a {
    color: #1a3e6e;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.department-item a:hover {
    color: #ff6b35;
}

.map-placeholder {
    background-color: #f0f7ff;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-note {
    background-color: #e3f2fd;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.contact-note h3 {
    color: #1a3e6e;
    margin-bottom: 20px;
}

/* 页脚样式 */
footer {
    background-color: #1a3e6e;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

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

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

.footer-section a:hover {
    color: #ff6b35;
    padding-left: 5px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h2 {
        font-size: 32px;
    }

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

    .news-item,
    .analysis-item,
    .knowledge-item,
    .position-item {
        flex-direction: column;
    }

    .news-date {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .process-steps,
    .promises,
    .culture-grid,
    .summary-stats {
        grid-template-columns: 1fr;
    }

    .page-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .intro-content,
    .news-list,
    .services-grid,
    .cases-grid,
    .product-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .position-meta {
        flex-direction: column;
    }

    .position-meta span {
        margin-bottom: 10px;
    }
}