/* 重置样式 */
.css365iz-reset,
.css365iz-navbar *,
.css365iz-hero *,
.css365iz-main *,
.css365iz-footer * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基础样式 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.css365iz-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏样式 */
.css365iz-navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    width: 100%;
}

.css365iz-navbar .css365iz-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.css365iz-logo a {
    font-size: 24px;
    font-weight: bold;
    color: #2c5282;
    text-decoration: none;
    transition: color 0.3s;
}

.css365iz-logo a:hover {
    color: #3182ce;
}

.css365iz-nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.css365iz-nav-menu li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.css365iz-nav-menu li a:hover,
.css365iz-nav-menu li a.css365iz-active {
    color: #3182ce;
}

.css365iz-nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3182ce;
    transition: width 0.3s;
}

.css365iz-nav-menu li a:hover::after,
.css365iz-nav-menu li a.css365iz-active::after {
    width: 100%;
}

.css365iz-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.css365iz-mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

/* 主横幅样式 */
.css365iz-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.css365iz-hero-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.css365iz-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
    z-index: 1;
}

.css365iz-hero-content {
    flex: 1;
    text-align: left;
    z-index: 1;
    max-width: 600px;
}

.css365iz-hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    max-width: 500px;
}

.css365iz-hero-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    animation: fadeInUp 1s 0.6s both;
    transition: transform 0.3s;
}

.css365iz-hero-image img:hover {
    transform: scale(1.05);
}

.css365iz-hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeInUp 1s;
}

.css365iz-hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s 0.2s both;
}

.css365iz-hero-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
    animation: fadeInUp 1s 0.4s both;
}

.css365iz-hero-button:hover {
    background-color: #3182ce;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 主内容区域 */
.css365iz-main {
    padding: 80px 0;
}

.css365iz-section {
    padding: 60px 0;
}

.css365iz-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.css365iz-section-title {
    font-size: 36px;
    color: #2c5282;
    margin-bottom: 15px;
    font-weight: bold;
}

.css365iz-section-desc {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* 健康知识板块 */
.css365iz-section-health {
    background-color: #f7fafc;
}

.css365iz-grid {
    display: grid;
    gap: 30px;
}

.css365iz-grid-three {
    grid-template-columns: repeat(3, 1fr);
}

.css365iz-grid-four {
    grid-template-columns: repeat(4, 1fr);
}

.css365iz-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.css365iz-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.css365iz-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.css365iz-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.css365iz-card:hover .css365iz-card-image img {
    transform: scale(1.1);
}

.css365iz-card-content {
    padding: 25px;
}

.css365iz-card-title {
    font-size: 22px;
    color: #2c5282;
    margin-bottom: 15px;
    font-weight: bold;
}

.css365iz-card-text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.css365iz-card-link {
    color: #3182ce;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.css365iz-card-link:hover {
    color: #2c5282;
}

/* 不孕不育板块 */
.css365iz-content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.css365iz-content-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.css365iz-content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.css365iz-content-text {
    flex: 1;
}

.css365iz-content-title {
    font-size: 28px;
    color: #2c5282;
    margin-bottom: 25px;
    font-weight: bold;
}

.css365iz-feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.css365iz-feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 16px;
}

.css365iz-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 20px;
}

.css365iz-content-para {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.css365iz-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #3182ce;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
}

.css365iz-button:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* 试管婴儿板块 */
.css365iz-section-ivf {
    background-color: #f7fafc;
}

.css365iz-feature-box {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.css365iz-feature-box:hover {
    transform: translateY(-5px);
}

.css365iz-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.css365iz-feature-title {
    font-size: 20px;
    color: #2c5282;
    margin-bottom: 15px;
    font-weight: bold;
}

.css365iz-feature-desc {
    color: #666;
    line-height: 1.6;
}

/* 三代试管板块 */
.css365iz-reverse {
    flex-direction: row-reverse;
}

.css365iz-advantage-list {
    margin-bottom: 30px;
}

.css365iz-advantage-item {
    margin-bottom: 25px;
}

.css365iz-advantage-item h4 {
    font-size: 20px;
    color: #2c5282;
    margin-bottom: 10px;
    font-weight: bold;
}

.css365iz-advantage-item p {
    color: #666;
    line-height: 1.8;
}

/* 统计数据板块 */
.css365iz-section-stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    color: #fff;
}

.css365iz-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.css365iz-stat-item {
    text-align: center;
}

.css365iz-stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.css365iz-stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* 卡片元信息 */
.css365iz-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #999;
}

.css365iz-card-date {
    color: #999;
}

.css365iz-card-category {
    color: #3182ce;
}

.css365iz-section-footer {
    text-align: center;
    margin-top: 50px;
}

.css365iz-button-large {
    padding: 15px 50px;
    font-size: 18px;
}

/* 子标题样式 */
.css365iz-subsection-title {
    font-size: 28px;
    color: #2c5282;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

/* 不孕不育病因板块 */
.css365iz-causes-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e2e8f0;
}

.css365iz-causes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.css365iz-cause-item {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.css365iz-cause-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.css365iz-cause-title {
    font-size: 22px;
    color: #2c5282;
    margin-bottom: 20px;
    font-weight: bold;
}

.css365iz-cause-list {
    list-style: none;
    text-align: left;
}

.css365iz-cause-list li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.css365iz-cause-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: bold;
}

/* 诊疗流程时间线 */
.css365iz-process-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e2e8f0;
}

.css365iz-process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
}

.css365iz-process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e2e8f0;
    z-index: 0;
}

.css365iz-process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding: 0 10px;
}

.css365iz-process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
    border: 4px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.css365iz-process-step h4 {
    font-size: 18px;
    color: #2c5282;
    margin-bottom: 10px;
    font-weight: bold;
}

.css365iz-process-step p {
    color: #666;
    font-size: 14px;
}

/* 试管婴儿优势板块 */
.css365iz-ivf-advantages {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e2e8f0;
}

.css365iz-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.css365iz-advantage-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #3182ce;
}

.css365iz-advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.css365iz-advantage-card h4 {
    font-size: 20px;
    color: #2c5282;
    margin-bottom: 15px;
    font-weight: bold;
}

.css365iz-advantage-card p {
    color: #666;
    line-height: 1.8;
}

/* 适用人群板块 */
.css365iz-suitable-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e2e8f0;
}

.css365iz-suitable-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.css365iz-suitable-item {
    padding: 15px 20px;
    background-color: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #3182ce;
    color: #555;
    line-height: 1.8;
}

.css365iz-suitable-item strong {
    color: #2c5282;
    font-weight: bold;
}

/* 三代试管流程 */
.css365iz-pgd-process {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e2e8f0;
}

.css365iz-pgd-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.css365iz-pgd-step {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.css365iz-pgd-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.css365iz-pgd-step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.css365iz-pgd-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.css365iz-pgd-step h4 {
    font-size: 20px;
    color: #2c5282;
    font-weight: bold;
    margin: 0;
}

.css365iz-pgd-step p {
    color: #666;
    line-height: 1.8;
}

/* 成功案例板块 */
.css365iz-section-cases {
    background-color: #f7fafc;
}

.css365iz-case-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.css365iz-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.css365iz-case-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.css365iz-case-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.css365iz-case-info h4 {
    font-size: 18px;
    color: #2c5282;
    margin-bottom: 5px;
    font-weight: bold;
}

.css365iz-case-info p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.css365iz-case-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.css365iz-case-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.css365iz-case-tags span {
    padding: 5px 12px;
    background-color: #e6f2ff;
    color: #3182ce;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* 专家团队板块 */
.css365iz-section-team {
    background-color: #fff;
}

.css365iz-team-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.css365iz-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.css365iz-team-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #f7fafc;
}

.css365iz-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.css365iz-team-card:hover .css365iz-team-photo img {
    transform: scale(1.1);
}

.css365iz-team-info {
    padding: 25px 20px;
}

.css365iz-team-name {
    font-size: 20px;
    color: #2c5282;
    margin-bottom: 8px;
    font-weight: bold;
}

.css365iz-team-title {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.css365iz-team-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.css365iz-team-specialty {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.css365iz-team-specialty span {
    padding: 5px 12px;
    background-color: #e6f2ff;
    color: #3182ce;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* FAQ常见问题板块 */
.css365iz-section-faq {
    background-color: #f7fafc;
}

.css365iz-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.css365iz-faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.css365iz-faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.css365iz-faq-question:hover {
    background-color: #f7fafc;
}

.css365iz-faq-question h3 {
    font-size: 18px;
    color: #2c5282;
    font-weight: bold;
    margin: 0;
    flex: 1;
}

.css365iz-faq-icon {
    font-size: 24px;
    color: #3182ce;
    font-weight: bold;
    transition: transform 0.3s;
}

.css365iz-faq-item.css365iz-active .css365iz-faq-icon {
    transform: rotate(45deg);
}

.css365iz-faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.css365iz-faq-item.css365iz-active .css365iz-faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.css365iz-faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 页脚样式 */
.css365iz-footer {
    background-color: #2d3748;
    color: #fff;
    padding: 60px 0 20px;
}

.css365iz-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.css365iz-footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.css365iz-footer-col p {
    color: #cbd5e0;
    line-height: 1.8;
}

.css365iz-footer-links {
    list-style: none;
}

.css365iz-footer-links li {
    margin-bottom: 12px;
}

.css365iz-footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.css365iz-footer-links a:hover {
    color: #fff;
}

.css365iz-footer-contact {
    list-style: none;
    color: #cbd5e0;
}

.css365iz-footer-contact li {
    margin-bottom: 12px;
}

.css365iz-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    color: #cbd5e0;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .css365iz-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }

    .css365iz-hero-wrapper {
        gap: 30px;
    }

    .css365iz-hero-content {
        max-width: 500px;
    }

    .css365iz-hero-image {
        max-width: 400px;
    }

    .css365iz-hero-image img {
        max-height: 400px;
    }

    .css365iz-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .css365iz-pgd-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .css365iz-mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .css365iz-nav-menu {
        display: none;
        position: fixed;
        left: -100%;
        top: 69px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        max-width: 100%;
        height: calc(100vh - 69px);
        overflow-y: auto;
        text-align: center;
        transition: left 0.3s ease-in-out;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 0;
        z-index: 999;
    }

    .css365iz-nav-menu.css365iz-active {
        display: flex;
        left: 0;
    }

    .css365iz-nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #e2e8f0;
        width: 100%;
    }

    .css365iz-nav-menu li:last-child {
        border-bottom: none;
    }

    .css365iz-nav-menu li a {
        display: block;
        width: 100%;
        padding: 10px 20px;
        font-size: 16px;
    }

    .css365iz-nav-menu li a::after {
        display: none;
    }

    .css365iz-mobile-menu-toggle.css365iz-active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .css365iz-mobile-menu-toggle.css365iz-active span:nth-child(2) {
        opacity: 0;
    }

    .css365iz-mobile-menu-toggle.css365iz-active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .css365iz-container {
        padding: 0 15px;
    }

    .css365iz-hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .css365iz-hero-content {
        text-align: center;
        max-width: 100%;
    }

    .css365iz-hero-image {
        max-width: 100%;
        margin-top: 20px;
        order: -1;
    }

    .css365iz-hero-image img {
        max-height: 300px;
    }

    .css365iz-hero-title {
        font-size: 32px;
    }

    .css365iz-hero-subtitle {
        font-size: 16px;
    }

    .css365iz-hero {
        height: auto;
        min-height: 450px;
        padding: 40px 0;
    }

    .css365iz-section-title {
        font-size: 28px;
    }

    .css365iz-grid-three {
        grid-template-columns: 1fr;
    }

    .css365iz-grid-four {
        grid-template-columns: 1fr;
    }

    .css365iz-content-wrapper {
        flex-direction: column;
    }

    .css365iz-reverse {
        flex-direction: column;
    }

    .css365iz-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .css365iz-main {
        padding: 40px 0;
    }

    .css365iz-section {
        padding: 40px 0;
    }

    .css365iz-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .css365iz-causes-grid {
        grid-template-columns: 1fr;
    }

    .css365iz-process-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .css365iz-process-timeline::before {
        display: none;
    }

    .css365iz-advantages-grid {
        grid-template-columns: 1fr;
    }

    .css365iz-pgd-steps {
        grid-template-columns: 1fr;
    }

    .css365iz-hero-image {
        order: 0;
    }

    .css365iz-section-desc {
        font-size: 16px;
        padding: 0 10px;
    }

    .css365iz-button-large {
        padding: 12px 40px;
        font-size: 16px;
    }

    .css365iz-card-content {
        padding: 20px;
    }

    .css365iz-card-meta {
        font-size: 12px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .css365iz-navbar {
        padding: 12px 0;
    }

    .css365iz-logo a {
        font-size: 20px;
    }

    .css365iz-nav-menu {
        top: 64px;
        height: calc(100vh - 64px);
    }

    .css365iz-nav-menu li a {
        font-size: 15px;
        padding: 12px 20px;
    }

    .css365iz-mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .css365iz-hero-image img {
        max-height: 250px;
    }

    .css365iz-hero-title {
        font-size: 24px;
    }

    .css365iz-hero-subtitle {
        font-size: 14px;
    }

    .css365iz-hero-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .css365iz-section-title {
        font-size: 24px;
    }

    .css365iz-card-title {
        font-size: 20px;
    }

    .css365iz-content-title {
        font-size: 24px;
    }

    .css365iz-stats-grid {
        grid-template-columns: 1fr;
    }

    .css365iz-stat-number {
        font-size: 36px;
    }

    .css365iz-subsection-title {
        font-size: 22px;
    }

    .css365iz-process-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .css365iz-pgd-step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .css365iz-faq-question h3 {
        font-size: 16px;
    }

    .css365iz-faq-question {
        padding: 20px;
    }

    .css365iz-faq-answer {
        padding: 0 20px;
    }

    .css365iz-faq-item.css365iz-active .css365iz-faq-answer {
        padding: 0 20px 20px;
    }

    .css365iz-hero {
        padding: 30px 0;
    }

    .css365iz-container {
        padding: 0 15px;
    }

    .css365iz-card-image {
        height: 180px;
    }

    .css365iz-stat-label {
        font-size: 16px;
    }

    .css365iz-section-desc {
        font-size: 14px;
    }

    .css365iz-button-large {
        padding: 10px 30px;
        font-size: 14px;
    }

    .css365iz-content-image img {
        margin-top: 20px;
    }

    .css365iz-feature-desc {
        font-size: 14px;
    }
}
