/* 主样式表 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f7;
}

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

/* 头部样式 */
.header-section {
    background: white;
    color: black;
    padding: 20px 0 80px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.logo h1 {
    display: none; /* 屏幕阅读器可见，但视觉上隐藏 */
    color: transparent;
}

.logo img {
    height: 40px;
}

/* 苹果风格导航 */
.main-nav ul {
    display: flex;
    list-style: none;
    background: rgba(245, 245, 247, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 5px 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.main-nav li {
    margin: 0 5px;
}

.main-nav a {
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.main-nav a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #0071e3;
}

.main-nav a.active {
    background: #0071e3;
    color: white;
}

.header-content {
    text-align: center;
    padding-top: 30px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-top: 30px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    margin: 0 10px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background-color: #0071e3;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 113, 227, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #0071e3;
    border: 2px solid #0071e3;
}

.btn-primary:hover {
    background-color: #0076ea;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 113, 227, 0.4);
}

.btn-secondary:hover {
    background-color: rgba(0, 113, 227, 0.05);
    transform: translateY(-3px);
}

/* 服务部分样式 */
.services-section {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    color: #1d1d1f;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    color: #86868b;
    font-size: 1.1rem;
}

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

.service-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1e3c72;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-card a {
    color: #0071e3;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.service-card a::after {
    content: '›';
    margin-left: 8px;
    font-size: 1.2em;
}

/* 关于部分样式 */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.features-list {
    margin-top: 20px;
}

.features-list li {
    padding: 8px 0;
    color: #555;
}

.about-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* 为什么选择我们部分样式 */
.why-us-section {
    padding: 80px 0;
    background-color: white;
}

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

.reason h3 {
    font-size: 1.4rem;
    color: #1d1d1f;
    margin-bottom: 15px;
    font-weight: 600;
}

.reason p {
    color: #86868b;
}

/* 作品集部分样式 */
.portfolio-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 60, 114, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s;
    padding: 20px;
    text-align: center;
}

.portfolio-overlay:hover {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    margin-bottom: 15px;
}

.portfolio-overlay a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* 联系部分样式 */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 15px;
}

.contact-info ul {
    margin-top: 20px;
}

.contact-info li {
    padding: 8px 0;
    color: #555;
}

.contact-info a {
    color: #ff6b35;
    text-decoration: none;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.contact-form button {
    width: 100%;
    padding: 12px;
}

.contact-form button:hover {
    background: #0076ea;
}

/* EA Development Page Styles */
.ea-overview {
    padding: 40px 0;
    background-color: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.overview-text h2 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 20px;
}

.overview-text p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.features-list h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin: 25px 0 15px;
}

.features-list ul {
    padding-left: 20px;
    margin-top: 10px;
}

.features-list li {
    padding: 5px 0;
    color: #555;
}

.overview-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ea-types {
    padding: 40px 0 20px;
    background-color: #f8f9fa;
}

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

.type-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eaeaea;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.type-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.type-card h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 15px;
}

.type-card p {
    color: #666;
    margin-bottom: 15px;
}

.type-card ul {
    padding-left: 20px;
    margin-top: 15px;
    border-top: 1px dashed #eee;
    padding-top: 15px;
}

.type-card li {
    padding: 3px 0;
    color: #777;
}

/* About Page Styles */
.company-overview {
    padding: 40px 0;
    background-color: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-text h2 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 20px;
}

.overview-text p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.mission-vision {
    margin-top: 30px;
}

.mv-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.mv-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mv-item h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 10px;
}

.mv-item p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 40px 0 20px;
    background-color: #f8f9fa;
}

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

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.member-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 5px;
}

.member-info h4 {
    font-size: 1rem;
    color: #0071e3;
    margin-bottom: 15px;
    font-weight: 500;
}

.member-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skills span {
    background: #f0f5ff;
    color: #0071e3;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* 苹果风格页脚 */
.footer-section {
    background: #f5f5f7;
    color: #86868b;
    padding: 50px 0 30px;
    margin-top: 60px;
    border-top: 1px solid #d2d2d7;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-column h3 {
    color: #1d1d1f;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    padding-bottom: 5px;
}

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

.footer-column li {
    margin-bottom: 11px;
    line-height: 1.4;
}

.footer-column a {
    color: #86868b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #0071e3;
}

.footer-subscribe {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px 40px;
    border-bottom: 1px solid #d2d2d7;
    margin-bottom: 30px;
    text-align: center;
}

.footer-subscribe p {
    color: #86868b;
    font-size: 0.875rem;
    margin-bottom: 15px;
}

.subscribe-btn {
    background: #0071e3;
    color: white;
    border: 1px solid #0071e3;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.subscribe-btn:hover {
    background: #0076ea;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    color: #86868b;
    font-size: 0.8125rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-links-secondary {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links-secondary a {
    color: #86868b;
    text-decoration: none;
    white-space: nowrap;
}

.footer-links-secondary a:hover {
    color: #0071e3;
}

.separator {
    margin: 0 8px;
    color: #d2d2d7;
    display: inline-block;
}

/* Page Title Section */
.page-title-section {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 50px;
}

.page-title-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title-section h1 {
    font-size: 2.5rem;
    color: #1d1d1f;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.page-title-section p {
    font-size: 1.2rem;
    color: #86868b;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-info-section {
    padding: 40px 0 20px;
    background-color: white;
}

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

.contact-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eaeaea;
}

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

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 10px;
}

.contact-card p {
    color: #666;
    margin-bottom: 8px;
}

.contact-card p:last-child {
    margin-bottom: 0;
    color: #86868b;
    font-size: 0.9rem;
}

.contact-form-section {
    padding: 20px 0 60px;
    background-color: #f8f9fa;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    background: #0071e3;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #0076ea;
}

/* FAQ Page Styles */
.faq-content {
    padding: 40px 0;
    background-color: white;
}

.faq-categories h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 30px;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.faq-tabs li {
    list-style: none;
    padding: 10px 20px;
    background: #f0f5ff;
    color: #0071e3;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.faq-tabs li.active,
.faq-tabs li:hover {
    background: #0071e3;
    color: white;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h3 {
    padding: 20px;
    margin: 0;
    background: white;
    cursor: pointer;
    font-size: 1.1rem;
    color: #1d1d1f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    color: #0071e3;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    transform: rotate(45deg);
}

.faq-item.active h3 {
    background: #f0f5ff;
    color: #0071e3;
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
}

.contact-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: 18px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s;
    box-shadow: 0 10px 50px rgba(0,0,0,0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #000;
}

.modal-content h2 {
    color: #1d1d1f;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.modal-content p {
    color: #86868b;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

#subscribeForm {
    margin-bottom: 20px;
}

#subscribeForm input {
    width: 100%;
    padding: 14px;
    border: 1px solid #d2d2d7;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 15px;
    box-sizing: border-box;
}

#subscribeForm input:focus {
    outline: none;
    border-color: #0071e3;
}

#subscribeForm button {
    width: 100%;
    background: #0071e3;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

#subscribeForm button:hover {
    background: #0076ea;
}

.wechat-contact {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.wechat-contact p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.wechat-contact a {
    display: inline-block;
    background: #07c160;
    color: white;
    padding: 8px 20px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

.wechat-contact a:hover {
    background: #06a354;
}

.copied-message {
    display: none;
    color: #0071e3;
    font-size: 0.85rem;
    margin-left: 10px;
}

/* Show copied message when active */
.show-copied {
    display: inline-block;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-subscribe {
        padding-bottom: 30px;
    }
    
    .subscribe-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .subscribe-form input {
        border-radius: 4px;
        border-right: 1px solid #d2d2d7;
    }
    
    .subscribe-form button {
        border-radius: 4px;
        padding: 10px;
    }
    
    .footer-links-secondary {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .separator {
        display: inline;
    }
    
    body {
        background-color: white;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links-secondary {
        flex-direction: column;
        gap: 8px;
    }
    
    .separator {
        display: none;
    }
    
    .footer-links-secondary a {
        display: block;
        margin: 4px 0;
    }
}

/* Legal Pages Styles (Privacy Policy, Terms of Service, etc.) */
.privacy-content,
.terms-content {
    padding: 20px 0 40px;
    background-color: white;
}

.privacy-text,
.terms-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.8;
}

.privacy-text h2,
.terms-text h2 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 20px;
}

.privacy-text h3,
.terms-text h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin: 25px 0 15px;
}

.privacy-text p,
.terms-text p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.privacy-text ul,
.terms-text ul {
    padding-left: 30px;
    margin: 15px 0;
}

.privacy-text li,
.terms-text li {
    margin-bottom: 8px;
    color: #666;
}

.privacy-text strong,
.terms-text strong {
    color: #1e3c72;
}

.last-updated {
    font-style: italic;
    color: #86868b;
    margin-top: 30px;
    text-align: center;
}

/* Risk Warning Page Styles */
.risk-content {
    padding: 40px 0;
    background-color: white;
}

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

.risk-item {
    background: #fff8f0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #ff6b35;
}

.risk-item h3 {
    font-size: 1.3rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.risk-item p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.risk-item ul {
    padding-left: 20px;
    margin: 10px 0;
}

.risk-item li {
    padding: 4px 0;
    color: #777;
}

/* Compliance Page Styles */
.compliance-content {
    padding: 40px 0;
    background-color: white;
}

.client-responsibilities {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
}
