/* style.css */

body {
    background-color: #2a475e;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    display: block;
    flex-direction: column;
    min-height: 100vh;
}

/* 为pitch-deck页面特别设置 */
body.pitch-deck-page {
    background-color: white;
    color: #333;
}

/* Remove the dark overlay for pitch-deck page */
body:not(.pitch-deck-page)::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

main {
    flex: 1;
    padding: 20px; /* 为主内容添加内边距 */
    text-align: center;
}
h1 {
    font-size: 2.5em;
    margin-top: 20px;
}

h2 {
    font-size: 1.8em;
    margin-top: 20px;
}

p {
    font-size: 1.2em;
    padding: 0 20px;
    margin-bottom: 20px;
}

a {
    color: #e9590c; /* 链接颜色为橙色 */
    text-decoration: none;
    font-size: 1.2em;
    margin-top: 20px;
    display: inline-block;
    transition: color 0.3s; /* 添加平滑的悬停效果 */
}

a:hover {
    color: #999999; /* 浅灰色的悬停效果 */
}


/* Add local styles */
.substack-embed-container {
    max-width: 600px;      /* Limit max width */
    margin: 0 auto;        /* Center align */
    padding: 20px;         /* Add some padding */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow effect */
    border-radius: 8px;    /* Add rounded corners */
    background-color: #f9f9f9; /* Set background color */
    color: #0f172a;
}

.podcast-embed-container {
    max-width: 600px;      /* Limit max width */
    margin: 20px auto;     /* Center align and add some margin */
    text-align: center;    /* Center the iframe */
}

.articles-hero,
.articles-feed,
.articles-podcast {
    max-width: 720px;
    margin: 40px auto;
    text-align: center;
    color: #ffffff;
}

.articles-hero h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.articles-hero p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #dbeafe;
}

.articles-feed h2,
.articles-podcast h2 {
    font-size: 1.6em;
    margin-bottom: 16px;
}


/* Footer styles */
.footer-content {
    position: relative;
    margin-top: auto; /* 将页脚推到页面底部 */
    padding: 20px 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    z-index: 10; /* 确保这一部分位于上层 */
    font-size: 1.2em; /* 调整字体大小 */
    background: none; /* 移除背景色 */
}

.footer-text {
    color: white; /* 统一文本颜色为白色 */
}

.footer-text h1 {
    font-size: 36px; /* 为第一行文本设置字体大小 */
    margin: 0;
}

.footer-text h2 {
    font-size: 24px; /* 为第二行文本设置字体小 */
    margin: 0;
}

.footer-text h3 {
    font-size: 1.2em; /* 为第三行文本设置字体大小 */
    margin: 0;
}

/* Navigation styles */
nav {
    background-color: #2a475e;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    position: relative;
    z-index: 1;
}

.nav-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-right {
    margin-left: auto;
}

/* Language selector styles */
.language-select {
    padding: 0.5rem;
    border: 1px solid #ffffff3d;
    border-radius: 4px;
    background-color: transparent;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-select:hover {
    background-color: #ffffff1a;
}

.language-select:focus {
    outline: none;
    border-color: #ffffff;
}

.language-select option {
    background-color: #2a475e;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
    }

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

    .nav-right {
        margin: 1rem 0 0 0;
        text-align: center;
    }

    .language-select {
        width: 100%;
        max-width: 200px;
    }
}

nav a {
    display: flex;
    align-items: center;
    color: white; /* 根据背景色调整 */
    text-decoration: none; /* 移除链接的下划线 */
    font-size: 1.2em; /* 字体大小 */
}

nav a:hover {
    color: #ccc; /* 添加悬停效果 */
    background-color: #1c3751; /* 背景颜色变深一些的效果 */
    color: #e67e22; /* 悬停时字体颜色变为橙色 */
}

nav i {
    margin-right: 8px; /* 图标和文本之间的空隙 */
}

/* Responsive adjustments for max-width 768px */
@media (max-width: 768px) {
    body {
        font-size: 90%;
        text-align: left; /* 在移动设备上文本向左对齐 */
    }

    main {
        padding: 10px; /* 减少主内容内边距 */
    }

    h1 {
        font-size: 2em;
        margin-top: 15px;
    }

    h2 {
        font-size: 1.5em;
        margin-top: 15px;
    }

    h1, h2, h3 {
        text-align: left; /* 标题左对齐 */
    }

    p, a{
        font-size: 1em;
        padding: 0 10px; /* 减少段落的内边距 */
        margin-bottom: 10px;
        text-align: left; /* 确保文本左对齐 */
    }
    
    /* Ensure navigation aligns to the left on small screens */
    nav {
        flex-direction: column;
        align-items: flex-start; /* 调整孩子元素左对齐 */
        gap: 10px;
    }
    
    nav a {
        padding: 10px;
        width: 100%; /* 链接扩展到全宽度 */
        text-align: left; /* 链接文本左对齐 */
    }
    
    .footer-content {
        font-size: 0.9em; /* 在移动设备上页脚字体更小 */
        padding: 10px;
    }

    #chat-iframe-container {
        width: 100%;
        padding: 10px;
    }

    #chat-iframe {
        min-height: 500px;
    }
}
    
    
    /* Further adjustments for max-width 600px */
    @media (max-width: 600px) {
    h1 {
        font-size: 1.8em;
        margin-top: 10px;
    }
    
    h2 {
        font-size: 1.3em;
        margin-top: 10px;
    }
    
    p {
        font-size: 0.9em;
        padding: 0 5px; /* 再次减少段落内边距 */
        margin-bottom: 10px;
    }
    
    a {
        font-size: 0.9em;
    }
    
    /* Ensure navigation works well on very small screens */
    nav {
        flex-direction: column;
        align-items: flex-start; /* 保持左对齐 */
        gap: 5px;
    }
    
    nav a {
        padding: 8px;
        width: 100%; /* 链接扩展到全宽度 */
        text-align: left; /* 链接文本左对齐 */
    }
    
    .footer-content {
        font-size: 0.8em; /* 页脚字体小一些 */
        padding: 10px;
    }

    #chat-iframe-container {
        padding: 5px;
    }

    #chat-iframe {
        min-height: 300px;
    }
    #pitch-deck-content {
        padding: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Pitch deck specific styles */
    #pitch-deck-root {
        background: white;
        color: #333;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        margin: 20px auto;
        max-width: 1200px;
        min-height: 400px;
        position: relative;
    }

    .pitch-deck-container {
        overflow: hidden;
    }

    #pitch-deck-root h1 {
        color: #2a475e;
        font-size: 2.5em;
        margin-bottom: 0.5em;
    }

    #pitch-deck-root h2 {
        color: #2a475e;
        font-size: 2em;
        margin-bottom: 0.5em;
    }

    #pitch-deck-root .slide {
        min-height: 400px;
        margin-bottom: 40px;
        padding: 20px;
    }

    @media (max-width: 768px) {
        #pitch-deck-content {
            padding: 10px;
        }
        
        #pitch-deck-root {
            padding: 10px;
            margin: 10px;
        }

        #pitch-deck-root .slide {
            min-height: 300px;
            margin-bottom: 20px;
            padding: 10px;
        }
    }
  }

/* 修改body样式,避免背景图覆盖内容 */
body.ai-innovation-hub-page {
    background-color: white;
    color: #333;
}

/* 确保ai-innovation-hub内容正确显示 */
.ai-innovation-hub-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
}

/* 修改section标题样式 */
.ai-innovation-hub-section {
    color: #2a475e;
    font-size: 2em;
    margin-bottom: 1em;
    text-align: center;
}

/* Pricing page styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 0 1rem;
}

.pricing-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #3B82F6;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: #2a475e;
    margin: 1rem 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-card li {
    margin: 0.5rem 0;
    color: #4B5563;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2a475e;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1a365d;
}

/* Partner page styles */
.partner-section {
    margin: 2rem 0;
    padding: 0 1rem;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 1.5rem 0;
}

.partner-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.benefits-list li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li:before {
    content: "•";
    color: #3B82F6;
    position: absolute;
    left: 0;
}

/* FAQ section styles */
.faq-section {
    margin: 3rem 0;
    padding: 0 1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 1.5rem 0;
}

.faq-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive styles */
@media (max-width: 768px) {
    .pricing-grid,
    .partner-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }
}

/* Partner card enhancements */
.partner-card.featured {
    border: 2px solid #3B82F6;
    background: linear-gradient(to bottom right, white, #F0F7FF);
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.partner-card.featured:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.partner-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.partner-features li {
    padding: 0.5rem 0;
    color: #4B5563;
    border-bottom: 1px solid #E5E7EB;
}

.partner-features li:last-child {
    border-bottom: none;
}

.partner-card h3 {
    color: #2a475e;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.partner-card p {
    color: #4B5563;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partner-card.featured {
        transform: none;
    }
    
    .partner-card.featured:hover {
        transform: scale(1.02);
    }
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #1a365d 0%, #2a475e 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 0 0 2rem 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Button Styles - Global */
.primary-button, .secondary-button, .demo-button, .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

/* Primary Button */
.primary-button {
    background-color: #3B82F6;
    color: white;
}

.primary-button:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

/* Secondary Button */
.secondary-button {
    background-color: transparent;
    color: #3B82F6;
    border: 2px solid #3B82F6;
}

.secondary-button:hover {
    background-color: #3B82F6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

/* Demo Button */
.demo-button {
    background-color: #2a475e;
    color: white;
    width: 100%;
}

.demo-button:hover {
    background-color: #1a365d;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(42, 71, 94, 0.2);
}

/* CTA Button */
.cta-button {
    background-color: #3B82F6;
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.cta-button:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

/* Button Groups */
.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Button Icons */
.primary-button i,
.secondary-button i,
.demo-button i,
.cta-button i {
    font-size: 1.1em;
}

/* Disabled Button States */
.primary-button:disabled,
.secondary-button:disabled,
.demo-button:disabled,
.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-button,
    .secondary-button,
    .demo-button,
    .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 4rem 2rem;
    background: white;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    margin: 1rem 0;
    color: #2a475e;
    font-size: 1.5rem;
}

.feature-card p {
    color: #4B5563;
}

/* Enhanced Partners Showcase Styles */
.partners-showcase {
    background: linear-gradient(to bottom, #F3F4F6, white);
    padding: 6rem 2rem;
    text-align: center;
}

.partners-showcase h2 {
    color: #2a475e;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.partner-subtitle {
    color: #4B5563;
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.strategic-partner-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.strategic-partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: grayscale(0%); /* Remove grayscale to show original colors */
    transition: transform 0.3s ease;
}

.strategic-partner-card:hover .partner-logo {
    transform: scale(1.1);
}

/* Specific logo adjustments */
.partner-logo[alt="Microsoft"] {
    height: 50px; /* Slightly smaller for Microsoft logo */
}

.partner-logo[alt="OpenAI"] {
    height: 55px;
}

.partner-logo[alt="Anthropic"] {
    height: 40px; /* Smaller for Claude logo to match others */
}

.partner-logo[alt="Cloudflare"] {
    height: 45px;
}

.strategic-partner-card h3 {
    color: #2a475e;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.strategic-partner-card p {
    color: #4B5563;
    margin-bottom: 1rem;
}

.partner-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.partner-features li {
    color: #6B7280;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.partner-features li:last-child {
    border-bottom: none;
}

.partner-value-proposition {
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 1200px;
}

.partner-value-proposition h3 {
    color: #2a475e;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.value-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.value-item i {
    font-size: 2rem;
    color: #3B82F6;
    margin-bottom: 1rem;
}

.value-item h4 {
    color: #2a475e;
    margin: 1rem 0;
    font-size: 1.25rem;
    width: 100%;
}

.value-item p {
    color: #4B5563;
    line-height: 1.5;
    font-size: 1rem;
    margin: 0;
    width: 100%;
}

@media (max-width: 1200px) {
    .partner-value-proposition {
        margin: 3rem 2rem;
        padding: 2rem;
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .partner-value-proposition {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-item {
        padding: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-showcase {
        padding: 3rem 1rem;
    }
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 4rem 0 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    border-radius: 12px;
    color: #ffffff;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #e2e8f0;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-buttons .primary-button {
    background: #ffffff;
    color: #2c5282;
    border: none;
}

.cta-buttons .primary-button:hover {
    background: #f7fafc;
    transform: translateY(-2px);
}

.cta-buttons .secondary-button {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-buttons .secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .partner-logos {
        gap: 2rem;
    }
}

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

    .partner-logos {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.contact-links {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
}

.contact-links .link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #2a475e;
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.contact-links .link:hover {
    background-color: #1a365d;
}

.contact-links i {
    font-size: 1.25rem;
}

/* Contact page styles */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-intro {
    font-size: 1.25rem;
    color: #4a5568;
    text-align: center;
    max-width: 800px;
    margin: 2rem auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-method i {
    font-size: 1.5rem;
    color: #2c5282;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ebf4ff;
    border-radius: 50%;
}

.contact-method h3 {
    margin: 0 0 0.5rem 0;
    color: #2d3748;
}

.contact-method a {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    color: #2b6cb0;
}

.contact-features {
    margin-top: 3rem;
}

.contact-features ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.contact-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-features li i {
    color: #2c5282;
    font-size: 1.25rem;
}

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

.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.partner-logos-grid img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logos-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.cta-section {
    text-align: center;
    margin: 4rem 0 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partner-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .partner-logos-grid img {
        width: 80px;
        height: 80px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

/* Solutions page styles */
.solutions-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2a475e 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 3rem;
}

.solutions-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.solutions-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 2rem;
    margin-bottom: 4rem;
}

.solution-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.solution-header i {
    font-size: 2rem;
    color: #3B82F6;
}

.solution-header h2 {
    margin: 0;
    color: #2a475e;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.solution-features li {
    padding: 0.5rem 0;
    color: #4B5563;
    border-bottom: 1px solid #E5E7EB;
}

.solution-features li:last-child {
    border-bottom: none;
}

.powered-by {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.partner-logo-small {
    height: 30px;
    width: auto;
}

.implementation-process {
    padding: 4rem 2rem;
    background: #F3F4F6;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
}

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

.solutions-cta {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #2a475e 0%, #1a365d 100%);
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .solutions-hero h1 {
        font-size: 2rem;
    }

    .solutions-hero p {
        font-size: 1.25rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Services page styles */
.services-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2a475e 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 0 0 2rem 2rem;
}

.services-intro {
    max-width: 800px;
    margin: 3rem auto;
    text-align: center;
    padding: 2rem;
    background: #f8fafc;  /* 浅灰色背景 */
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.services-intro h2 {
    color: #2a475e;  /* 深蓝色标题 */
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #3B82F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #4B5563;
    border-bottom: 1px solid #E5E7EB;
}

.methodology-section {
    background: #F3F4F6;
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.step {
    position: relative;
}

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

.success-stories {
    padding: 4rem 2rem;
    text-align: center;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.story-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.story-content i {
    font-size: 2rem;
    color: #3B82F6;
    margin-bottom: 1rem;
}

.story-meta {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.industry {
    color: #4B5563;
    font-style: italic;
}

.result {
    color: #3B82F6;
    font-weight: bold;
    margin-top: 0.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .services-grid,
    .methodology-steps,
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

/* Product showcase styles */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-header i {
    font-size: 1.5rem;
    color: #3B82F6;
}

.product-header h2 {
    margin: 0;
    color: #2a475e;
    font-size: 1.25rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-description {
    color: #4B5563;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.product-features li {
    padding: 0.75rem 0;
    color: #4B5563;
    border-bottom: 1px solid #E5E7EB;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-footer {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
    text-align: center;
}

.demo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 200px;
    max-width: 80%;
    padding: 0.75rem 1.5rem;
    background-color: #3B82F6;
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.demo-button:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.demo-button i {
    margin-right: 0.5rem;
}

/* More Products section update */
.more-products {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin: 2rem auto 0;
    max-width: 1200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.more-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
}

.more-products h2 {
    color: #2a475e;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.more-products p {
    color: #4a5568;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-badge {
    background: #3B82F6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.more-products i {
    font-size: 3rem;
    color: #3B82F6;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

/* Responsive design */
@media (max-width: 1024px) {
    .product-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .product-showcase {
        grid-template-columns: 1fr;
    }
}

/* Responsive design */
@media (max-width: 1024px) {
    .product-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .product-showcase {
        grid-template-columns: 1fr;
    }
}

/* Color Classes */
.text-primary {
    color: #2a475e;
}

.text-dark {
    color: #1a202c;
}

.text-gray-800 {
    color: #2d3748;
}

.text-gray-700 {
    color: #4a5568;
}

.text-gray-100 {
    color: #f7fafc;
}

/* Service Card Styles Update */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-features li {
    color: #4a5568;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

/* Methodology Section Update */
.methodology-section {
    background: #f8fafc;
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

/* Custom Solutions Section Update */
.custom-solutions {
    background: linear-gradient(135deg, #2a475e 0%, #1a365d 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 1rem;
    margin: 2rem 0;
}

/* Text emphasis styles */
.text-emphasis {
    color: #1a365d;  /* 深蓝色 */
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 500;
}

/* About Page Styles */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.approach-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.approach-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.approach-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* About Page Contact Links */
.contact-links {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
}

.contact-links .link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    color: #2c3e50;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-links .link:hover {
    background: #e9ecef;
}

.contact-links .link i {
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-links {
        flex-direction: column;
    }

    .contact-links .link {
        width: fit-content;
    }
}

/* CTA Section Themes */
.cta-section.light-theme {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #2d3748;
}

.cta-section.light-theme h2 {
    color: #1a365d;
}

.cta-section.light-theme p {
    color: #4a5568;
}

.cta-section.light-theme .primary-button {
    background: #2c5282;
    color: #ffffff;
}

.cta-section.light-theme .primary-button:hover {
    background: #1a365d;
}

.cta-section.light-theme .secondary-button {
    background: transparent;
    color: #2c5282;
    border: 2px solid #2c5282;
}

.cta-section.light-theme .secondary-button:hover {
    background: rgba(44, 82, 130, 0.1);
}

/* List Styles */
.benefits-list, .values-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.benefits-list li, .values-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.benefits-list li:before, .values-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: bold;
}

.values-list li strong {
    color: #2d3748;
    font-weight: 600;
    margin-right: 0.5rem;
}

/* Partnership Section */
.partnership-benefits {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.partnership-benefits h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Core Values Section */
.core-values {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.core-values h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Content Sections */
.content-section {
    margin: 3rem 0;
}

.content-section h2 {
    color: #2d3748;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: bold;
    font-size: 1.2em;
}

.feature-title {
    font-weight: 600;
    color: #2d3748;
    margin-right: 0.5rem;
    min-width: 180px;
}

.feature-desc {
    color: #4a5568;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-list li {
        flex-direction: column;
    }

    .feature-title {
        margin-bottom: 0.25rem;
        min-width: auto;
    }
}

/* Benefits and Values Section */
.benefits-values-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefits-box, .values-box {
    margin-bottom: 4rem;
}

.benefits-box h2, .values-box h2 {
    text-align: center;
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 2rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #2d3748;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefit-item p {
    color: #4a5568;
    line-height: 1.5;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.value-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #ebf8ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: #2c5282;
}

.value-content h3 {
    color: #2d3748;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.value-content p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

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

    .value-item {
        padding: 1.5rem;
    }

    .benefits-box h2, .values-box h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-hero h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.contact-hero p {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.contact-card-header {
    margin-bottom: 1.5rem;
}

.contact-card-header i {
    font-size: 2.5rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.contact-card-header h2 {
    font-size: 1.5rem;
    color: #2d3748;
    margin: 0;
}

.contact-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #ebf8ff;
    color: #2c5282;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.contact-link:hover {
    background: #bee3f8;
}

.contact-features {
    margin-top: 4rem;
}

.contact-features h2 {
    text-align: center;
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 3rem;
}

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

.feature-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #2d3748;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 1rem;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .contact-container {
        padding: 2rem 1rem;
    }

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

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

    .contact-features h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
}

/* Contact Section in About Page */
.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    margin-top: 4rem;
}

.contact-section h2 {
    text-align: center;
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #4a5568;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.contact-card-header {
    margin-bottom: 1.5rem;
}

.contact-card-header i {
    font-size: 2.5rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.contact-card-header h2 {
    font-size: 1.5rem;
    color: #2d3748;
    margin: 0;
}

.contact-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #ebf8ff;
    color: #2c5282;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.contact-link:hover {
    background: #bee3f8;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-section h2 {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

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

/* Benefits Section in Partners Page */
.benefits-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin: 4rem 0;
}

.benefits-section h2 {
    text-align: center;
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefit-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #2c5282;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: #2d3748;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Join Section */
.join-section {
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    margin-top: 4rem;
}

.join-section h2 {
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.join-section p {
    color: #4a5568;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.join-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.join-actions .primary-button,
.join-actions .secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.join-actions .primary-button {
    background: #2c5282;
    color: #ffffff;
}

.join-actions .primary-button:hover {
    background: #1a365d;
    transform: translateY(-2px);
}

.join-actions .secondary-button {
    background: #f7fafc;
    color: #2d3748;
    border: 1px solid #e2e8f0;
}

.join-actions .secondary-button:hover {
    background: #edf2f7;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .benefits-section {
        padding: 3rem 1rem;
        margin: 3rem 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .join-section {
        padding: 3rem 1rem;
    }

    .join-actions {
        flex-direction: column;
    }

    .join-actions .primary-button,
    .join-actions .secondary-button {
        width: 100%;
        justify-content: center;
    }
}

/* More Products Coming Soon */
.more-products {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.more-products h2 {
    color: #2a475e;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.more-products p {
    color: #4a5568;
    font-size: 1.2rem;
    margin-bottom: 0;
}
