/* Strategic Planning & Collaboration Page Styles */

/* Hero Section */
.hero-section {
    /* background: linear-gradient(135deg, #1f9968 0%, #2d5a3d 100%); */
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: url('/assets/images/about-us.jpg') center/cover no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Main Page Styles */
.main-page {
    background: #ffffff;
}

/* Overview Section */
.overview-section {
    padding: 100px 0;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    max-width: 100%;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Title Header */

.title-header h2 {
    font-size: 40px;
}


/* Strategic Dimensions */
.strategic-dimensions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.dimension-card {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(31, 153, 104, 0.05);
}

.dimension-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(31, 153, 104, 0.15);
}

.dimension-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #16a34a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    flex-shrink: 0;
}

.dimension-icon .layui-icon {
    font-size: 22px;
}

.dimension-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.dimension-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Strategic Services Section */
.strategic-services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 8px 32px rgba(31, 153, 104, 0.08);
    border: 1px solid rgba(31, 153, 104, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 12px 48px rgba(31, 153, 104, 0.15);
}

.accordion-item.active {
    box-shadow: 0 16px 56px rgba(31, 153, 104, 0.2);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(31, 153, 104, 0.02);
}

.service-info {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.service-icon-wrapper {
    position: relative;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #16a34a 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    transition: all 0.3s ease;
}

.service-icon .layui-icon {
    font-size: 24px;
}

.accordion-header:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-details h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.service-details p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.toggle-indicator {
    width: 40px;
    height: 40px;
    background: rgba(31, 153, 104, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.accordion-item.active .toggle-indicator {
    background: var(--primary-color);
    color: #ffffff;
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    opacity: 1;
    padding: 0 30px 30px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.content-column h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-column li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.content-column li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.content-column li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Risk Indicators */
.risk-indicators {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.risk-indicators h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.indicators-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 15px;
}

.indicator-label {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    min-width: 120px;
}

.indicator-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, #16a34a 100%);
    border-radius: 4px;
    transition: width 2s ease-out;
    width: 0;
}

.indicator-value {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    min-width: 40px;
    text-align: right;
}

/* Research Methodology */
.research-methodology {
    margin-bottom: 30px;
}

.research-methodology h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Research Deliverables */
.research-deliverables h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.deliverable-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(31, 153, 104, 0.2);
    transition: all 0.3s ease;
}

.deliverable-item:hover {
    background: rgba(31, 153, 104, 0.05);
    transform: translateY(-2px);
}

.deliverable-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.deliverable-item span {
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

/* Partnership Types */
.partnership-types {
    margin-top: 20px;
}

.partnership-types h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.partnership-category {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.category-header i {
    color: var(--primary-color);
    font-size: 20px;
}

.category-header h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.partnership-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partnership-category li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.partnership-category li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Partnership Process */
.partnership-process {
    margin-top: 30px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(31, 153, 104, 0.1);
}

.partnership-process h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.flow-step {
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    margin: 0 auto 12px;
}

.flow-step h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.flow-arrow {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}

/* Success Stories Section */
.success-stories-section {
    padding: 100px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.story-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(31, 153, 104, 0.08);
    border: 1px solid rgba(31, 153, 104, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(31, 153, 104, 0.15);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.story-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #16a34a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    flex-shrink: 0;
}

.story-meta h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.industry-tag {
    background: rgba(31, 153, 104, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.story-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-metrics {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.metric-label {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Strategic Framework Section */
.strategic-framework-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.framework-principles {
    margin-top: 40px;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
    padding: 25px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(31, 153, 104, 0.08);
    transition: all 0.3s ease;
}

.principle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(31, 153, 104, 0.15);
}

.principle-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.principle-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.principle-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Framework Diagram */
.framework-diagram {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

/* 添加旋转动画关键帧 */
@keyframes rotateAround {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes rotateAroundRight {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes rotateAroundLeft {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) rotate(-360deg);
    }
}

/* 绕圈旋转动画 */
@keyframes orbitRotate {
    0% {
        transform: rotate(0deg) translateX(140px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(140px) rotate(-360deg);
    }
}

.diagram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.center-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 8px 32px rgba(31, 153, 104, 0.3);
    padding: 10px;
}

.diagram-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.element-circle {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(31, 153, 104, 0.2);
}

.element-circle .layui-icon {
    font-size: 18px;
}

.element span {
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    max-width: 80px;
}

.market-intelligence {
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation: orbitRotate 20s linear infinite;
}

.geopolitical-analysis {
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation: orbitRotate 20s linear infinite;
    animation-delay: -5s;
}

.partnership-network {
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation: orbitRotate 20s linear infinite;
    animation-delay: -10s;
}

.risk-management {
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation: orbitRotate 20s linear infinite;
    animation-delay: -15s;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1f9968 0%, #408157 100%);
    padding: 90px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/pic/video-3.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;

}

.cta-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-button .layui-icon {
    font-size: 12px;
}

.cta-button.primary {
    background: #ffffff;
    color: var(--primary-color);
}

.cta-button.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

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

.cta-button.secondary:hover {
    background: #ffffff;
    color: #1f9968;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .text-content {
        max-width: 100%;
    }

    .title-header h2 {
        font-size: 32px;
    }

    .title-header p {
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

    .cta-content h3 {
        font-size: 28px;
    }

    .cta-buttons {
        align-items: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

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

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

    .process-flow {
        flex-direction: column;
        gap: 20px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .framework-diagram {
        width: 300px;
        height: 300px;
    }

    .center-circle {
        width: 100px;
        height: 100px;
        font-size: 12px;
    }

    .element-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .element-circle .layui-icon {
        font-size: 16px;
    }

    .element span {
        font-size: 10px;
        max-width: 70px;
    }

    .market-intelligence,.geopolitical-analysis,.partnership-network,.risk-management {
        animation: none;
        transform: none;
    }

    .market-intelligence{
        left: 50%;
        transform: translateX(-50%);
        top: -10px;
    }
    .geopolitical-analysis{
        right: -10px;
        left: auto;
        top: 25%;
        transform: translateY(50%);
    }
    .partnership-network{
        bottom: -10px;
        top: auto;
        left: 50%;
        transform: translateX(-50%)
    }
    .risk-management{
        left: -10px;
        right: auto;
        top: 25%;
        transform: translateY(50%);
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 200px;
    }

    .hero-content h1 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .hero-section::before {
        animation: none;
    }

    .title-header h2 {
        text-align: center;
        font-size: 28px;
        line-height: 35px;
    }

    .title-decoration {
        justify-content: center;
    }

    .decoration-line {
        width: 40px;
        flex: none;
    }

    .decoration-dot {
        width: 10px;
        height: 10px;
    }

    .title-header {
        margin-bottom: 20px;
    }

    .title-header p {
        font-size: 15px;
        text-align: center;
    }

    .overview-section,
    .strategic-services-section,
    .success-stories-section,
    .strategic-framework-section {
        padding: 40px 0;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .cta-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .cta-button {
        font-size: 14px;
    }

    .cta-button .layui-icon {
        font-size: 10px;
    }

    .cta-buttons {
        gap: 15px;
    }

    .accordion-header {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .accordion-content {
        padding: 0 20px 20px;
    }

    .service-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .service-icon .layui-icon {
        font-size: 20px;
    }

    .service-details h3 {
        font-size: 20px;
    }

    .service-details p {
        font-size: 15px;
    }

    .toggle-indicator {
        align-self: center;
    }

    .indicators-grid {
        gap: 10px;
    }

    .indicator {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .indicator-value {
        min-width: 0;
    }

    .indicator-label {
        min-width: auto;
        font-size: 12px;
    }

    .indicator-bar {
        width: 100%;
    }

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

    .story-metrics {
        flex-direction: column;
        gap: 10px;
    }

    .breadcrumb {
        flex-wrap: wrap;
        font-size: 12px;
        display: none;
    }

    .dimension-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .dimension-icon {
        align-self: flex-start;
        width: 50px;
        height: 50px;
    }

    .principle-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .dimension-card p {
        font-size: 15px;
        text-align: left;
    }

    .principle-number {
        align-self: center;
    }

    .framework-diagram {
        width: 250px;
        height: 250px;
    }

    .market-intelligence {
        top: -10px;
    }

    .partnership-network {
        bottom: -10px;
    }

    .geopolitical-analysis {
        right: -10px;
    }

    .risk-management {
        left: -10px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}