/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.zedadecontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.logo h1 {
    font-size: 24px;
    color: #1a73e8;
    margin: 0;
}

.logo h1 a {
    color: inherit;
    text-decoration: none;
}

.main-nav ul li.zedadethis a,
.main-nav ul li.zedadethis a:hover {
    color: #1a73e8;
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #1a73e8;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}

.main-nav ul li a:hover {
    color: #1a73e8;
}

/* 移动端导航样式 */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav ul li {
        margin: 0;
        width: 100%;
    }

    .main-nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 18px;
        border-bottom: 1px solid #eee;
    }

    .main-nav ul li a:hover {
        color: #1a73e8;
        background: #f8f9fa;
    }
}

/* 添加遮罩层样式 */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

/* 英雄区域样式 */
.zedadehero {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.zedadehero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.zedadehero-content {
    position: relative;
    z-index: 2;
}

.zedadehero-image {
    position: relative;
    z-index: 2;
}

.zedadehero-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.zedadehero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.zedadehero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.zedadehero-content p {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.zedadehero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.zedadehero-features span {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 18px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.zedadehero-features span:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.zedadecta-buttons {
    display: flex;
    gap: 20px;
}

.zedadebtn {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.zedadebtn-primary {
    background-color: #fff;
    color: #1a73e8;
}

.zedadebtn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.zedadebtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 服务区域样式 */
.zedadeservices {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.zedadesection-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a73e8;
}

.zedadeservices-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.zedadeservices-main {
    grid-column: 1;
}

.zedadeservices-secondary {
    grid-column: 2;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
}

.zedadeservice-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.zedadeservice-card.zedadeprimary {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.zedadeservice-card.zedadeprimary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

.zedadeservice-card.zedadeprimary h3,
.zedadeservice-card.zedadeprimary .zedadeservice-icon,
.zedadeservice-card.zedadeprimary .zedadedetail-label,
.zedadeservice-card.zedadeprimary .zedadedetail-value {
    color: #fff;
}

.zedadeservice-card:hover {
    transform: translateY(-10px);
}

.zedadeservice-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a73e8;
}

.zedadeservice-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a73e8;
}

.zedadeservice-desc {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.zedadeservice-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0,0,0,0.05);
    border-radius: 8px;
}

.zedadedetail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.zedadedetail-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.zedadedetail-value {
    font-size: 16px;
    font-weight: bold;
    color: #1a73e8;
}

.zedadeservice-features {
    list-style: none;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.zedadeservice-features li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.zedadeservice-features li:before {
    content: "✓";
    color: #1a73e8;
    position: absolute;
    left: 0;
}

.zedadeservice-card.zedadeprimary .zedadeservice-features li:before {
    color: #fff;
}

.zedadeservice-card.zedadeprimary .zedadeservice-features {
    border-top-color: rgba(255,255,255,0.2);
}

.zedadeservice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.zedadeservice-badge {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    backdrop-filter: blur(5px);
}

.zedadeservice-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
    position: relative;
    z-index: 2;
}

.zedadehighlight-item {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: transform 0.3s;
}

.zedadehighlight-item:hover {
    transform: translateY(-5px);
}

.zedadehighlight-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.zedadehighlight-text {
    font-size: 16px;
}

.zedadeservice-requirements {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    position: relative;
    z-index: 2;
}

.zedadeservice-requirements h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.zedaderequirements-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

.zedaderequirements-list li {
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.zedaderequirements-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
}

.zedadeservice-cta {
    margin-top: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.zedadebtn-light {
    background: #fff;
    color: #1a73e8;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
}

.zedadebtn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: #f8f9fa;
}

.zedadeservice-card.zedadeprimary .zedadeservice-details {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.zedadeservice-card.zedadeprimary .zedadedetail-label {
    color: rgba(255,255,255,0.8);
}

.zedadeservice-card.zedadeprimary .zedadedetail-value {
    color: #fff;
    font-size: 18px;
}

/* 优势区域样式 */
.zedadeadvantages {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.zedadeadvantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.zedadeadvantage-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.zedadeadvantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.zedadeadvantage-card.zedadeprimary {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    grid-column: span 2;
}

.zedadeadvantage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.zedadeadvantage-badge {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    backdrop-filter: blur(5px);
}

.zedadeadvantage-icon {
    font-size: 40px;
    display: inline-block;
    line-height: 1;
}

.zedadeadvantage-content {
    flex: 1;
}

.zedadeadvantage-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a73e8;
}

.zedadeadvantage-card.zedadeprimary h3 {
    color: #fff;
}

.zedadeadvantage-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.zedadeadvantage-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.zedadestat-item {
    text-align: center;
}

.zedadestat-value {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.zedadestat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.zedadeadvantage-card.zedadeprimary .zedadestat-value {
    color: #fff;
}

.zedadeadvantage-features {
    list-style: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.zedadeadvantage-card.zedadeprimary .zedadeadvantage-features {
    border-top-color: rgba(255,255,255,0.2);
}

.zedadeadvantage-features li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.zedadeadvantage-features li:before {
    content: "✓";
    color: #1a73e8;
    position: absolute;
    left: 0;
}

.zedadeadvantage-card.zedadeprimary .zedadeadvantage-features li:before {
    color: #fff;
}

/* 流程区域样式 */
.zedadeprocess {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.zedadeprocess-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.zedadeprocess-main {
    grid-column: 1;
}

.zedadeprocess-sidebar {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.zedadeprocess-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.zedadeprocess-card.zedadeprimary {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
}

.zedadeprocess-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.zedadeprocess-icon {
    font-size: 40px;
}

.zedadeprocess-badge {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    backdrop-filter: blur(5px);
}

.zedadeprocess-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.zedadeprocess-desc {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.zedadeprocess-timeline {
    position: relative;
    padding-left: 40px;
}

.zedadeprocess-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #1a73e8;
    opacity: 0.2;
}

.zedadetimeline-item {
    position: relative;
    margin-bottom: 50px;
}

.zedadetimeline-item:last-child {
    margin-bottom: 0;
}

.zedadetimeline-number {
    position: absolute;
    left: -40px;
    width: 40px;
    height: 40px;
    background: #1a73e8;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    z-index: 1;
}

.zedadetimeline-content {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.zedadetimeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.zedadetimeline-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.zedadetimeline-icon {
    font-size: 32px;
    margin-right: 15px;
}

.zedadetimeline-content h3 {
    font-size: 20px;
    color: #1a73e8;
    margin: 0;
}

.zedadetimeline-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.zedadetimeline-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.zedadedetail-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
}

.zedadedetail-label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #1a73e8;
    margin-bottom: 10px;
}

.zedadedetail-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.detail-item li {
    font-size: 14px;
    color: #666;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.detail-item li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a73e8;
}

.zedadeprocess-summary {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.zedadesummary-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.zedadesummary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.zedadesummary-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.zedadesummary-icon {
    font-size: 32px;
    margin-right: 15px;
}

.zedadesummary-header h3 {
    font-size: 20px;
    color: #1a73e8;
    margin: 0;
}

.zedadesummary-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zedadesummary-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.zedadesummary-value {
    font-size: 24px;
    font-weight: bold;
    color: #1a73e8;
}

.zedadesummary-label {
    font-size: 14px;
    color: #666;
}

.zedadesummary-item .zedadesummary-icon {
    font-size: 24px;
    margin: 0;
}

.zedadesummary-text {
    font-size: 16px;
    color: #333;
}

/* 联系区域样式 */
.zedadecontact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.zedadecontact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.zedadecontact-main {
    grid-column: 1;
}

.zedadecontact-sidebar {
    grid-column: 2;
    display: grid;
    grid-template-rows: repeat(3, auto);
    gap: 30px;
}

.zedadecontact-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.zedadecontact-card.primary {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.zedadecontact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.zedadecontact-icon {
    font-size: 48px;
}

.zedadecontact-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    backdrop-filter: blur(5px);
}

.zedadecontact-phone {
    text-align: center;
    margin-bottom: 40px;
}

.zedadephone-number {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.zedadephone-desc {
    font-size: 18px;
    opacity: 0.9;
}

.zedadecontact-time {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.zedadetime-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.zedadetime-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.15);
}

.zedadetime-icon {
    font-size: 28px;
}

.zedadetime-info {
    flex: 1;
}

.zedadetime-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.zedadetime-value {
    font-size: 16px;
    font-weight: 500;
}

.zedadecontact-cta {
    text-align: center;
}

.zedadecontact-info-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.zedadecontact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.zedadeinfo-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.zedadeinfo-icon {
    font-size: 36px;
    margin-right: 15px;
    color: #1a73e8;
}

.zedadeinfo-header h3 {
    font-size: 22px;
    color: #1a73e8;
    margin: 0;
}

.zedadeinfo-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zedadeaddress-item,
.zedadecontact-method,
.zedadebooking-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.zedadeaddress-item:hover,
.zedadecontact-method:hover,
.zedadebooking-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.zedadeaddress-icon,
.zedademethod-icon,
.zedadebooking-icon {
    font-size: 24px;
    color: #1a73e8;
}

.zedadeaddress-text,
.zedademethod-info,
.zedadebooking-text {
    font-size: 15px;
    color: #333;
}

.zedademethod-info {
    flex: 1;
}

.zedademethod-name {
    font-weight: 500;
    margin-bottom: 5px;
    color: #1a73e8;
}

.zedademethod-value {
    color: #666;
}

/* 响应式设计更新 */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }

    .zedadehero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .zedadehero-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .zedadehero-features {
        justify-content: center;
    }

    .zedadecta-buttons {
        justify-content: center;
    }

    .zedadeservices-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .zedadeservices-main, .zedadeservices-secondary {
        grid-column: 1;
    }

    .zedadeservices-secondary {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .zedadeadvantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zedadeadvantage-card.primary {
        grid-column: span 2;
    }

    .zedadeprocess-wrapper {
        grid-template-columns: 1fr;
    }

    .zedadeprocess-main {
        grid-column: 1;
    }

    .zedadeprocess-sidebar {
        grid-column: 1;
        grid-template-columns: repeat(2, 1fr);
    }

    .zedadecontact-wrapper {
        grid-template-columns: 1fr;
    }

    .zedadecontact-main {
        grid-column: 1;
    }

    .zedadecontact-sidebar {
        grid-column: 1;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .zedadeservices-secondary {
        grid-template-columns: 1fr;
    }

    .zedadeprocess-sidebar {
        grid-template-columns: repeat(2, 1fr);
    }

    .zedadecontact-sidebar {
        grid-template-columns: repeat(2, 1fr);
    }

    .zedadehero-content h2 {
        font-size: 42px;
    }

    .zedadehero-content p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .main-nav ul {
        margin-top: 15px;
        flex-direction: column;
        gap: 10px;
    }

    .main-nav ul li {
        margin: 0;
    }

    .zedadehero {
        padding: 120px 0 60px;
    }

    .zedadehero-content h2 {
        font-size: 36px;
    }

    .zedadehero-content p {
        font-size: 18px;
    }

    .zedadehero-features {
        flex-direction: column;
        align-items: center;
    }

    .zedadehero-features span {
        width: 100%;
        max-width: 300px;
    }

    .zedadecta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .zedadebtn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 15px;
    }

    .zedadesection-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .zedadeservice-card, .zedadeadvantage-card, .zedadecontact-card {
        padding: 20px;
    }

    .zedadeservice-details {
        grid-template-columns: 1fr;
    }

    .zedadeservice-highlights {
        grid-template-columns: 1fr;
    }

    .zedadeadvantages-grid {
        grid-template-columns: 1fr;
    }

    .zedadeadvantage-card.primary {
        grid-column: span 1;
    }

    .zedadeprocess-sidebar {
        grid-template-columns: 1fr;
    }

    .zedadetimeline-content {
        padding: 20px;
    }

    .zedadetimeline-details {
        grid-template-columns: 1fr;
    }

    .zedadecontact-sidebar {
        grid-template-columns: 1fr;
    }

    .zedadecontact-time {
        grid-template-columns: 1fr;
    }

    .zedadephone-number {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .zedadehero {
        padding: 100px 0 40px;
    }

    .zedadehero-content h2 {
        font-size: 28px;
    }

    .zedadehero-content p {
        font-size: 16px;
    }

    .zedadehero-features span {
        font-size: 14px;
        padding: 8px 16px;
    }

    .zedadeservice-card, .zedadeadvantage-card, .zedadecontact-card {
        padding: 15px;
    }

    .zedadeservice-icon, .zedadeadvantage-icon {
        font-size: 32px;
    }

    .zedadeservice-badge, .zedadeadvantage-badge {
        font-size: 12px;
        padding: 4px 12px;
    }

    .zedadeservice-card h3, .zedadeadvantage-card h3 {
        font-size: 20px;
    }

    .zedadeservice-desc, .zedadeadvantage-desc {
        font-size: 14px;
    }

    .zedadetimeline-number {
        width: 30px;
        height: 30px;
        left: -30px;
        font-size: 16px;
    }

    .zedadetimeline-icon {
        font-size: 24px;
    }

    .zedadetimeline-content h3 {
        font-size: 18px;
    }

    .zedadecontact-icon {
        font-size: 32px;
    }

    .zedadecontact-badge {
        font-size: 12px;
        padding: 4px 12px;
    }

    .zedadephone-number {
        font-size: 28px;
    }

    .zedadetime-item {
        padding: 12px;
    }

    .zedadeinfo-header h3 {
        font-size: 18px;
    }

    .zedadeaddress-item, .zedadecontact-method, .zedadebooking-item {
        padding: 10px;
    }

    .zedadeaddress-icon, .zedademethod-icon, .zedadebooking-icon {
        font-size: 20px;
    }

    .zedadeaddress-text, .zedademethod-info, .zedadebooking-text {
        font-size: 13px;
    }
}

/* 添加平板设备的特殊优化 */
@media (min-width: 768px) and (max-width: 1024px) {
    .zedadehero-wrapper {
        gap: 40px;
    }

    .zedadehero-image {
        max-width: 500px;
    }

    .zedadeservices-secondary {
        grid-template-columns: repeat(2, 1fr);
    }

    .zedadeadvantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zedadeprocess-sidebar {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 添加大屏幕设备的优化 */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .zedadehero-content h2 {
        font-size: 56px;
    }

    .zedadehero-content p {
        font-size: 28px;
    }

    .zedadesection-title {
        font-size: 42px;
    }

    .zedadeservice-card h3, .zedadeadvantage-card h3 {
        font-size: 28px;
    }

    .zedadeservice-desc, .zedadeadvantage-desc {
        font-size: 18px;
    }
}

/* 页脚样式 */
.zedadefooter {
    background: #1a73e8;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.zedadefooter-note {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.8;
}

/* FAQ样式 */
.zedadefaq-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.zedadefaq-item:last-child {
    margin-bottom: 0;
}

.zedadefaq-question {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.zedadefaq-answer {
    display: flex;
    align-items: flex-start;
    padding-left: 20px;
}

.zedadefaq-icon {
    width: 24px;
    height: 24px;
    background: #1a73e8;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

.zedadefaq-answer .zedadefaq-icon {
    background: #34a853;
}

.zedadefaq-text {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.zedadefaq-question .zedadefaq-text {
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .zedadeadvantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zedadeadvantage-card.primary {
        grid-column: span 2;
    }

    .zedadeprocess-wrapper {
        grid-template-columns: 1fr;
    }

    .zedadeprocess-main {
        grid-column: 1;
    }

    .zedadeprocess-sidebar {
        grid-column: 1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .zedadeprocess-info-card {
        flex: 1;
        min-width: 300px;
    }

    .zedadeprocess-summary {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .zedadesummary-card {
        flex: 1;
        min-width: 300px;
    }

    .zedadefaq-item {
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }

    .main-nav ul {
        margin-top: 20px;
        flex-direction: column;
    }

    .main-nav ul li {
        margin: 10px 0;
    }

    .zedadehero {
        padding: 120px 0 80px;
    }

    .zedadehero-content h2 {
        font-size: 36px;
    }

    .zedadehero-content p {
        font-size: 18px;
    }

    .zedadehero-features {
        flex-direction: column;
        align-items: center;
    }

    .zedadehero-features span {
        width: 100%;
        max-width: 300px;
    }

    .zedadecta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .zedadebtn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 15px;
    }

    .zedadesection-title {
        font-size: 28px;
    }

    .zedadeservice-details {
        grid-template-columns: 1fr 1fr;
    }

    .zedadeservice-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .zedaderequirements-list {
        grid-template-columns: 1fr;
    }

    .zedadeadvantages-grid {
        grid-template-columns: 1fr;
    }

    .zedadeadvantage-stats {
        grid-template-columns: 1fr;
    }

    .zedadestat-value {
        font-size: 28px;
    }

    .zedadeadvantage-card.primary {
        grid-column: span 1;
    }

    .zedadeprocess-sidebar {
        flex-direction: column;
    }

    .zedadeprocess-info-card {
        width: 100%;
    }

    .zedadetimeline-content {
        padding: 15px;
    }

    .zedadetimeline-details {
        padding: 10px;
    }

    .zedadeprocess-summary {
        flex-direction: column;
    }

    .zedadesummary-card {
        width: 100%;
    }

    .zedadefaq-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .zedadefaq-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .zedadehero {
        padding: 100px 0 60px;
    }

    .zedadehero-content h2 {
        font-size: 28px;
    }

    .zedadehero-content p {
        font-size: 16px;
    }

    .zedadeservice-card, .zedadeadvantage-card, .zedadecontact-item {
        padding: 20px;
    }

    .zedadehero-features span {
        font-size: 16px;
        padding: 10px 20px;
    }

    .zedadeservice-details {
        grid-template-columns: 1fr;
    }

    .zedadeservice-highlights {
        grid-template-columns: 1fr;
    }

    .zedadeservice-badge {
        font-size: 12px;
        padding: 4px 12px;
    }

    .zedadeadvantage-icon {
        font-size: 32px;
    }

    .zedadeadvantage-card h3 {
        font-size: 20px;
    }

    .zedadeadvantage-badge {
        font-size: 12px;
        padding: 4px 12px;
    }

    .zedadeprocess-card {
        padding: 20px;
    }

    .zedadeprocess-icon {
        font-size: 32px;
    }

    .zedadeprocess-badge {
        font-size: 12px;
        padding: 4px 12px;
    }

    .zedadetimeline-number {
        width: 30px;
        height: 30px;
        left: -30px;
        font-size: 16px;
    }

    .zedadetimeline-icon {
        font-size: 24px;
    }

    .zedadetimeline-content h3 {
        font-size: 18px;
    }

    .zedadesummary-value {
        font-size: 20px;
    }
}

/* ===== 页脚样式 ===== */
.footer {
    background: #1a73e8;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    margin-bottom: 15px;
    padding: 0;
}

.footer-links li {
    display: inline;
}

.footer p {
    margin: 5px 0;
    font-size: 14px;
    opacity: 0.9;
}

/* ===== 首页文章板块 ===== */
.zedadearticles {
    padding: 100px 0;
    background: #fff;
}

.zedadearticle-grid-home {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.zedadearticle-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.zedadearticle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.zedadearticle-thumb {
    overflow: hidden;
    background: #f8f9fa;
}

.zedadearticle-thumb img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.zedadearticle-card:hover .zedadearticle-thumb img {
    transform: scale(1.05);
}

.zedadearticle-card-title {
    font-size: 15px;
    padding: 12px 15px 15px;
    margin: 0;
    line-height: 1.4;
}

.zedadearticle-card-title a {
    color: #1a73e8;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zedadearticle-card-title a:hover {
    color: #0d47a1;
}

.zedadearticle-desc {
    font-size: 13px;
    color: #666;
    padding: 0 15px;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.zedadearticle-date {
    display: block;
    font-size: 12px;
    color: #999;
    padding: 8px 15px 15px;
}

/* ===== 内页通用 ===== */
.zedadeinner-page .zedadepage-banner {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    padding: 120px 0 40px;
}

.zedadepage-banner h1 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
}

.zedadebreadcrumb {
    font-size: 14px;
    opacity: 0.9;
}

.zedadebreadcrumb a {
    color: #fff;
    text-decoration: none;
}

.zedadebreadcrumb a:hover {
    text-decoration: underline;
}

.zedademain {
    background: #f8f9fa;
}

.zedadelayout-with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 30px;
    padding: 40px 0 60px;
    align-items: start;
}

.zedadecontent-main {
    min-width: 0;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* ===== 侧栏 ===== */
.zedadesidebar {
    min-width: 0;
    position: sticky;
    top: 80px;
}

.zedadesidebar-block {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.zedadesidebar-block:last-child {
    margin-bottom: 0;
}

.zedadesidebar-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a73e8;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 2px solid #e9ecef;
}

.zedadesidebar-title a {
    color: inherit;
    text-decoration: none;
}

.zedadesidebar-title a:hover {
    color: #0d47a1;
}

.zedadesidebar-list {
    list-style: none;
    max-height: 400px;
    overflow-y: auto;
}

.zedadesidebar-item {
    padding: 8px 0;
    border-bottom: 1px dashed #e9ecef;
    font-size: 14px;
}

.zedadesidebar-item:last-child {
    border-bottom: none;
}

.zedadesidebar-item a {
    color: #333;
    text-decoration: none;
    display: block;
    line-height: 1.4;
}

.zedadesidebar-item a:hover {
    color: #1a73e8;
}

.zedadesidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #333;
    text-decoration: none;
}

.zedadesidebar-link:hover {
    color: #1a73e8;
}

.zedadesidebar-thumb {
    flex: 0 0 64px;
    width: 64px;
    height: 48px;
    overflow: hidden;
    border-radius: 6px;
    background: #f0f4f8;
}

.zedadesidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zedadesidebar-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zedadesidebar-date {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* ===== 列表页 ===== */
.zedadearticle-list {
    list-style: none;
}

.zedadelist-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.zedadelist-item:last-child {
    border-bottom: none;
}

.zedadelist-thumb,
figure.zedadelist-thumb {
    flex: 0 0 180px;
    width: 180px;
    max-width: 40%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
}

.zedadelist-thumb img,
figure.zedadelist-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.zedadelist-body {
    flex: 1;
    min-width: 0;
}

.zedadelist-title {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.35;
}

.zedadelist-title a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}

.zedadelist-title a:hover {
    color: #0d47a1;
}

.zedadelist-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.zedadelist-meta a {
    color: #1a73e8;
    text-decoration: none;
}

.zedadelist-intro {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===== 分页左右布局 ===== */
.zedadepagebar-lr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.zedadepagebar-left,
.zedadepagebar-right {
    flex: 0 0 auto;
}

.zedadepagebar-center {
    flex: 1 1 auto;
    text-align: center;
    min-width: 0;
}

.zedadepagelist {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.zedadepagebar-left .zedadepagelist {
    justify-content: flex-start;
}

.zedadepagebar-center .zedadepagelist {
    justify-content: center;
}

.zedadepagebar-right .zedadepagelist {
    justify-content: flex-end;
}

.zedadepagelist a,
.zedadepagelist li {
    font-size: 14px;
}

.zedadepagelist a {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    color: #1a73e8;
    background: #f8f9fa;
    text-decoration: none;
}

.zedadepagelist a:hover,
.zedadepagelist .thisclass a {
    background: #1a73e8;
    color: #fff;
    border-color: #1a73e8;
}

/* ===== 内容页 ===== */
.zedadearticle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-size: 13px;
    color: #999;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.zedadearticle-meta a {
    color: #1a73e8;
    text-decoration: none;
}

.zedadearticle-litpic {
    text-align: center;
    margin-bottom: 20px;
}

.zedadearticle-litpic img {
    max-width: 100%;
    max-height: 400px;
    margin: 0 auto;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.zedadearticle-litpic img[src=""],
.zedadearticle-litpic img:not([src]) {
    display: none;
}

.zedadearticle-body {
    font-size: 16px;
    line-height: 1.8;
    word-break: break-word;
    color: #333;
}

.zedadearticle-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}

.zedadearticle-body p {
    margin-bottom: 15px;
}

.zedadediyfield {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
}

.zedadeimage-item {
    margin: 15px 0;
    text-align: center;
}

.zedadeimage-item img {
    max-width: 100%;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.zedadeimage-item span {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 8px;
}

.zedademeta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
    padding: 0;
}

.zedademeta-tags .clear {
    width: 100%;
    height: 0;
    clear: both;
}

.zedadetagitem a {
    display: inline-block;
    padding: 4px 12px;
    font-size: 13px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    color: #1a73e8;
    text-decoration: none;
}

.zedadetagitem a:hover {
    background: #1a73e8;
    color: #fff;
    border-color: #1a73e8;
}

.zedadeprenext {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.zedadeprenext-item {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.zedadeprenext-item span {
    color: #999;
}

.zedadeprenext-item a {
    color: #1a73e8;
    text-decoration: none;
}

.zedadeprenext-item a:hover {
    text-decoration: underline;
}

.zedaderelated {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.zedaderelated h2 {
    font-size: 20px;
    color: #1a73e8;
    margin-bottom: 20px;
}

.zedaderelated-list {
    list-style: none;
}

.zedaderelated-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px dashed #e9ecef;
}

.zedaderelated-item:last-child {
    border-bottom: none;
}

.zedaderelated-thumb,
figure.zedaderelated-thumb {
    flex: 0 0 100px;
    width: 100px;
    margin: 0;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
}

.zedaderelated-thumb img,
figure.zedaderelated-thumb img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    display: block;
}

.zedaderelated-body {
    flex: 1;
    min-width: 0;
}

.zedaderelated-body a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.zedaderelated-body a:hover {
    color: #0d47a1;
}

.zedaderelated-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* ===== 文章板块 & 内页响应式 ===== */
@media (max-width: 1200px) {
    .zedadearticle-grid-home {
        grid-template-columns: repeat(4, 1fr);
    }

    .zedadelayout-with-sidebar {
        grid-template-columns: minmax(0, 1fr) 240px;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .zedadearticle-grid-home {
        grid-template-columns: repeat(3, 1fr);
    }

    .zedadelayout-with-sidebar {
        grid-template-columns: 1fr;
    }

    .zedadesidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .zedadesidebar-block {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .zedadearticles {
        padding: 60px 0;
    }

    .zedadearticle-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .zedadeinner-page .zedadepage-banner {
        padding: 100px 0 30px;
    }

    .zedadecontent-main {
        padding: 20px;
    }

    .zedadelist-item {
        flex-direction: column;
        gap: 12px;
    }

    .zedadelist-thumb,
    figure.zedadelist-thumb {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .zedadelist-thumb img,
    figure.zedadelist-thumb img {
        height: 180px;
    }

    .zedadeprenext {
        grid-template-columns: 1fr;
    }

    .zedadepagebar-lr {
        flex-direction: column;
        align-items: stretch;
    }

    .zedadepagebar-left .zedadepagelist,
    .zedadepagebar-right .zedadepagelist,
    .zedadepagebar-center .zedadepagelist {
        justify-content: center;
    }

    .zedadesidebar {
        grid-template-columns: 1fr;
    }

    .zedaderelated-item {
        flex-direction: column;
    }

    .zedaderelated-thumb,
    figure.zedaderelated-thumb {
        width: 100%;
    }

    .zedaderelated-thumb img,
    figure.zedaderelated-thumb img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .zedadearticle-grid-home {
        grid-template-columns: 1fr;
    }

    .zedadearticle-thumb img {
        height: 180px;
    }

    .zedadelist-title {
        font-size: 16px;
    }

    .zedadepage-banner h1 {
        font-size: 1.2rem;
    }
}