/* ========================================
   助孕机构官网 - 样式文件
   专业、信赖、医疗风格
   ======================================== */

/* CSS变量定义 */
:root {
    /* 主色调 - 深蓝色系，体现专业信任 */
    --primary-color: #1a365d;
    --primary-light: #2c5282;
    --primary-dark: #0d1b2a;

    /* 辅助色 */
    --secondary-color: #3182ce;
    --accent-color: #e67e22;
    --accent-hover: #d35400;

    /* 中性色 */
    --white: #ffffff;
    --light-bg: #f7fafc;
    --light-gray: #e2e8f0;
    --gray: #718096;
    --dark-gray: #4a5568;
    --dark: #1a202c;

    /* 背景色 */
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-gradient: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);

    /* 阴影 */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.15);

    /* 圆角 */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 15px;
    --radius-xl: 20px;

    /* 过渡 */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--bg-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* 容器 */
.container-9c51a1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 按钮样式 */
.btn-f05dbb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary-2b5bde {
    background: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-primary-2b5bde:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-25fdaf {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-25fdaf:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-large-4d6811 {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-block-a198e7 {
    width: 100%;
    display: block;
}

/* 区块通用样式 */
.section-62a092 {
    padding: 80px 0;
}

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

.section-header-f50935 h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header-f50935 h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-header-f50935 p {
    font-size: 17px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-header-f50935.text-left-5be33c {
    text-align: left;
}

.section-header-f50935.text-left-5be33c h2::after {
    left: 0;
    transform: none;
}

/* ========================================
   头部导航
   ======================================== */
.header-5ea728 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header-5ea728.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content-c03982 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-e6380f {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-e6380f i {
    font-size: 28px;
    color: var(--accent-color);
}

.nav-935d5c {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-935d5c a {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    padding: 8px 0;
}

.nav-935d5c a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-935d5c a:hover {
    color: var(--primary-color);
}

.nav-935d5c a:hover::after {
    width: 100%;
}

.header-actions-84cfe0 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn-1325c6 {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    padding: 8px;
}

/* ========================================
   首屏横幅
   ======================================== */
.hero-59664b {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../imgs/banner.jpg') center/cover no-repeat;
    padding-top: 80px;
}

.hero-overlay-b3ac55 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgb(44 82 130 / 68%) 100%);;
}

.hero-content-8c14c8 {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
    text-align: center;
}

.hero-59664b h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description-aef0d0 {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 36px;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions-66da57 {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    justify-content: center;
}

.hero-features-ac6337 {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-feature-f97dbd {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    opacity: 0.9;
}

.hero-feature-f97dbd i {
    font-size: 20px;
    color: var(--accent-color);
}

/* ========================================
   服务优势
   ======================================== */
.advantages-1bf5b8 {
    background: var(--bg-secondary);
}

.advantages-grid-d2bb71 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card-3c7056 {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.advantage-card-3c7056:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.advantage-icon-807f19 {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon-807f19 i {
    font-size: 36px;
    color: var(--white);
}

.advantage-card-3c7056 h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.advantage-card-3c7056 p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   关于我们
   ======================================== */
.about-e7fb83 {
    background: var(--white);
}

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

.about-image-492684 {
    position: relative;
}

.about-image-492684 img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-badge-5de1ef {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-image-badge-5de1ef .year-c185e1 {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.about-image-badge-5de1ef .label-5ef4bd {
    font-size: 14px;
    opacity: 0.9;
}

.about-text-b5ddb9 .section-header-f50935 {
    margin-bottom: 30px;
}

.about-description-18a294 {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-stats-1f6239 {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
    padding: 25px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.stat-item-874bfc {
    text-align: center;
}

.stat-number-eb6d0d {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label-7007c5 {
    font-size: 14px;
    color: var(--gray);
}

/* ========================================
   服务内容
   ======================================== */
.services-4e3fbd {
    background: var(--bg-secondary);
}

.services-grid-856eb4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-d3ac30 {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card-d3ac30:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-image-ad9db7 {
    height: 220px;
    overflow: hidden;
}

.service-image-ad9db7 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-d3ac30:hover .service-image-ad9db7 img {
    transform: scale(1.1);
}

.service-content-912132 {
    padding: 25px;
}

.service-content-912132 h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-content-912132 p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-link-adb0ec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
}

.service-link-adb0ec:hover {
    gap: 12px;
}

/* ========================================
   成功案例
   ======================================== */
.cases-ff8e8b {
    background: var(--white);
}

.cases-grid-b0bbf4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.case-card-b309f4 {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.case-card-b309f4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-card-b309f4:hover img {
    transform: scale(1.1);
}

.case-large-c09938 {
    grid-column: span 2;
    grid-row: span 2;
}

.case-overlay-19e26f {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

.case-overlay-19e26f h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.case-overlay-19e26f p {
    font-size: 14px;
    opacity: 0.9;
}

/* ========================================
   新闻资讯
   ======================================== */
.news-ad7bd4 {
    background: var(--bg-secondary);
}

.news-grid-bd55e6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card-e7cb74 {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card-e7cb74:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.news-image-835808 {
    height: 200px;
    overflow: hidden;
    background: var(--light-gray);
}

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

.news-content-4f55fc {
    padding: 25px;
}

.news-meta-724adc {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--gray);
}

.news-meta-724adc i {
    margin-right: 5px;
}

.news-content-4f55fc h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content-4f55fc p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link-1c444d {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
}

.news-link-1c444d:hover {
    gap: 12px;
}

/* ========================================
   常见问题
   ======================================== */
.faq-c297e7 {
    background: var(--white);
}

.faq-list-79cee6 {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-dd2177 {
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item-dd2177:hover {
    border-color: var(--secondary-color);
}

.faq-question-aed392 {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--white);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question-aed392:hover {
    background: var(--light-bg);
}

.faq-question-aed392 i {
    font-size: 14px;
    color: var(--gray);
    transition: var(--transition);
}

.faq-item-dd2177.active .faq-question-aed392 i {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-answer-0a14e5 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-dd2177.active .faq-answer-0a14e5 {
    max-height: 500px;
}

.faq-answer-0a14e5 p {
    padding: 0 25px 20px;
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* ========================================
   客户评价
   ======================================== */
.reviews-3540a5 {
    background: var(--bg-secondary);
}

.reviews-grid-1343da {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card-7b615b {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-card-7b615b:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-header-3a4483 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.reviewer-avatar-1104fa {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.reviewer-avatar-img-a5a756 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info-63a79d {
    flex: 1;
}

.reviewer-info-63a79d h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.reviewer-info-63a79d span {
    font-size: 14px;
    color: var(--gray);
}

.review-rating-9a8245 {
    color: #f39c12;
    font-size: 14px;
}

.review-body-18b2e3 p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
    font-style: italic;
}

.review-footer-7fc48f {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.review-date-e0a109 {
    font-size: 13px;
    color: var(--gray);
}

.review-date-e0a109 i {
    margin-right: 5px;
}

/* ========================================
   联系我们
   ======================================== */
.contact-889e31 {
    background: var(--white);
}

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

.contact-info-64505e {
    padding: 40px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
}

.contact-item-a51610 {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon-3ee392 {
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-3ee392 i {
    font-size: 22px;
    color: var(--white);
}

.contact-details-27a52c h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-details-27a52c p {
    font-size: 15px;
    color: var(--gray);
}

.contact-social-60aa65 {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--light-gray);
}

.contact-social-60aa65 a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.contact-social-60aa65 a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.contact-form-wrapper-47b435 {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-904466 .form-group-dd955b {
    margin-bottom: 25px;
}

.contact-form-904466 label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-form-904466 input,
.contact-form-904466 select,
.contact-form-904466 textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: var(--transition);
    font-family: inherit;
}

.contact-form-904466 input:focus,
.contact-form-904466 select:focus,
.contact-form-904466 textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

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

.contact-form-904466 input::placeholder,
.contact-form-904466 textarea::placeholder {
    color: var(--gray);
}

/* ========================================
   友情链接
   ======================================== */
.friends-links-b56333 {
    background: var(--light-bg);
    padding: 50px 0;
}

.friends-links-grid-4795ad {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.friend-link-2b7c92 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
}

.friend-link-2b7c92:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--accent-color);
}

.friend-link-2b7c92 i {
    font-size: 20px;
}

/* ========================================
   页脚
   ======================================== */
.footer-6ad773 {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content-fbec56 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-0d7d7d {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo-0d7d7d i {
    font-size: 28px;
    color: var(--accent-color);
}

.footer-brand-2c22f9 > p {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-social-6fadcf {
    display: flex;
    gap: 12px;
}

.footer-social-6fadcf a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social-6fadcf a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links-6a4466 h4,
.footer-contact-fe51ea h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links-6a4466 ul li {
    margin-bottom: 12px;
}

.footer-links-6a4466 ul li a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links-6a4466 ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact-fe51ea p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-fe51ea p i {
    color: var(--accent-color);
}

.footer-bottom-83920e {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom-83920e p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.footer-bottom-83920e a {
    color: var(--accent-color);
}

.footer-disclaimer-aebce3 {
    font-size: 13px !important;
    opacity: 0.7;
}

/* ========================================
   回到顶部按钮
   ======================================== */
.back-to-top-21c2ce {
    position: fixed;
    bottom: 200px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top-21c2ce.visible-8348b5 {
    opacity: 1;
    visibility: visible;
}

.back-to-top-21c2ce:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

/* ========================================
   响应式设计
   ======================================== */
@media (max-width: 1024px) {
    .hero-59664b h1 {
        font-size: 42px;
    }

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

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

    .cases-grid-b0bbf4 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 220px);
    }

    .case-large-c09938 {
        grid-column: span 2;
        grid-row: span 1;
    }

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

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

    .contact-content-8db1b8,
    .about-content-b74969 {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .section-62a092 {
        padding: 50px 0;
    }

    .section-header-f50935 h2 {
        font-size: 28px;
    }

    .nav-935d5c {
        display: none;
    }

    .mobile-menu-btn-1325c6 {
        display: block;
    }

    .nav-935d5c.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 15px;
    }

    .hero-59664b {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-59664b h1 {
        font-size: 32px;
    }

    .hero-description-aef0d0 {
        font-size: 17px;
    }

    .hero-actions-66da57 {
        flex-direction: column;
    }

    .hero-features-ac6337 {
        /*flex-direction: column;*/
        gap: 20px;
    }

    .advantages-grid-d2bb71,
    .services-grid-856eb4,
    .news-grid-bd55e6,
    .reviews-grid-1343da {
        grid-template-columns: 1fr;
    }

    .cases-grid-b0bbf4 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .case-large-c09938 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .case-card-b309f4 {
        height: 200px;
    }

    .about-content-b74969 {
        gap: 40px;
    }

    .about-image-492684 {
        order: -1;
    }

    .about-stats-1f6239 {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .stat-item-874bfc {
        flex: 1;
        min-width: 80px;
    }

    .footer-content-fbec56 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-wrapper-47b435,
    .contact-info-64505e {
        padding: 25px;
    }
    .back-to-top-21c2ce{
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container-9c51a1 {
        padding: 0 15px;
    }

    .hero-59664b h1 {
        font-size: 26px;
    }

    .section-header-f50935 h2 {
        font-size: 24px;
    }

    .btn-f05dbb {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-large-4d6811 {
        padding: 14px 28px;
        font-size: 15px;
    }

    .advantage-card-3c7056,
    .service-card-d3ac30,
    .news-card-e7cb74,
    .review-card-7b615b {
        padding: 20px;
    }

    .faq-question-aed392 {
        padding: 16px 20px;
        font-size: 15px;
    }

    .about-image-badge-5de1ef {
        padding: 15px 20px;
    }

    .about-image-badge-5de1ef .year-c185e1 {
        font-size: 28px;
    }
}
