:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --text-color: #2D3436;
    --background-color: #F9F9F9;
    --lao-pattern: #FFD93D;
    --gradient-start: #FF6B6B;
    --gradient-end: #4ECDC4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', 'Noto Sans Lao', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--gradient-start, #FF6B6B), var(--gradient-end, #4ECDC4));
    overflow-x: hidden;
}

header {
    background: none !important;
    box-shadow: none !important;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    opacity: 1 !important;
}

header.scrolled {
    background: rgba(0,0,0,0.8) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin-left: 6rem;
}

.logo img {
    height: 80px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.language-selector {
    margin-left: auto;
    text-align: right;
}

.language-selector button {
    background: none;
    border: 1px solid #4ECDC4;
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #4ECDC4;
    font-size: 1.1rem;
}

.language-selector button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #4ECDC4;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.language-selector button:hover::before {
    width: 300%;
    height: 300%;
}

.language-selector button:hover {
    color: white;
}

.hero {
    text-align: center;
    padding: 5rem 1rem 1rem;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease, breatheFloat 4s ease-in-out infinite;
}

.hero p {
    font-size: 2rem;
    animation: fadeInUp 1s ease 0.2s backwards, breatheFloat 4s ease-in-out infinite 0.5s;
}

.hero img {
    width: 200px;
    margin-top: 2rem;
}

.download-section {
    padding: 4rem 1rem;
    background-color: #f8f9fa;
    position: relative;
}

.download-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    perspective: 1000px;
}

.download-box {
    background: rgba(20, 20, 20, 0.45);
    border: none;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
    padding: 2.5rem 2rem;
    border-radius: 18px;
    margin-bottom: 2rem;
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: fadeInUp 0.8s ease backwards, breathe 4s ease-in-out infinite;
}

.download-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.download-box:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.download-box:hover::before {
    opacity: 0.1;
}

.download-box h2 {
    text-align: center;
    width: 100%;
    color: #fff !important;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.download-box h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.download-box:hover h2::after {
    width: 50%;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    justify-content: center;
}

.btn-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
}

.h5-btn {
    background-color: var(--primary-color);
}

.ios-btn {
    background: #222;
}

.ios-btn:hover {
    background: #444;
}

.android-btn {
    background: #3DDC84;
    color: #fff;
}

.android-btn:hover {
    background: #1fa463;
}

/* 动画关键帧 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 循环动画关键帧 */
@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.9;
    }
}

@keyframes breatheFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-8px) scale(1.02);
        opacity: 0.9;
    }
}

@keyframes breatheShine {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.02);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .download-container {
        grid-template-columns: 1fr;
    }
    
    .download-box {
        padding: 1.5rem 1rem;
    }
    
    .download-btn {
        padding: 0.8rem 1.5rem;
    }

    .language-selector button {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }

    .download-options {
        flex-direction: column;
        gap: 1rem;
    }

    .about-section,
    .features,
    .download-section,
    .contact,
    .app-showcase {
        padding: 1.2rem 0.5rem;
    }
    .download-box,
    .feature-card,
    .contact-item,
    .email-item {
        padding: 1.2rem 0.5rem;
    }
    .hero {
        padding: 1rem 0.5rem 0.5rem;
        min-height: 20vh;
    }
}

/* 添加滚动动画 */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.features {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    color: #fff;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    animation: slideIn 0.8s ease backwards, breathe 4s ease-in-out infinite;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
}

.app-showcase {
    padding: 4rem 1rem;
    background-color: #f5f5f5;
    text-align: center;
}

.app-showcase h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    color: #fff;
}

.app-showcase h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.app-screenshots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.app-screenshots img {
    max-width: 220px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    background: #fff;
    animation: wave 3s ease-in-out infinite;
}

.app-screenshots img:nth-child(1) {
    animation-delay: 0s;
}

.app-screenshots img:nth-child(2) {
    animation-delay: 0.3s;
}

.app-screenshots img:nth-child(3) {
    animation-delay: 0.6s;
}

.app-screenshots img:nth-child(4) {
    animation-delay: 0.9s;
}

@keyframes wave {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
}

.contact {
    padding: 4rem 1rem;
    text-align: center;
    background-color: #f8f9fa;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    color: #fff;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

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

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: stretch;
    align-items: stretch;
}

.contact-item {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 180px;
}

.contact-info {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
}

.email-fb-item .contact-info {
    justify-content: center;
    text-align: left;
    margin-bottom: 0.5rem;
}

.email-fb-item .fb-info {
    margin-top: 0.5rem;
}

.contact-btn {
    width: 110px;
    margin: 10px auto 0 auto;
    display: block;
    font-size: 1rem;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(78,205,196,0.10);
    background: linear-gradient(90deg, #ff6b6b 0%, #4ecdc4 100%);
    color: #fff;
    font-weight: bold;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    text-align: center;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0.5rem 0;
    text-decoration: none;
}
.contact-btn:hover {
    background: linear-gradient(90deg, #4ecdc4 0%, #ff6b6b 100%);
    box-shadow: 0 4px 20px rgba(78,205,196,0.18);
    transform: translateY(-2px) scale(1.04);
}

.map-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 36px;
    margin-bottom: 24px;
}
.map-row .contact-item.map-item {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}
.map-row .map-embed iframe {
    width: 100% !important;
    min-width: 320px;
    max-width: 560px;
    height: 360px !important;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

.qr-code {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: breatheFloat 4s ease-in-out infinite;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-info {
    text-align: center;
}

.contact-info span,
.contact-info .contact-number,
.contact-info .copy-wrapper span {
    color: #fff !important;
}

.copy-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: none;
    padding: 0;
    border-radius: 0;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.copy-btn.contact-btn, .contact-btn {
    width: 110px;
    margin: 10px auto 0 auto;
    display: block;
    font-size: 1rem;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(78,205,196,0.10);
    background: linear-gradient(90deg, #ff6b6b 0%, #4ecdc4 100%);
    color: #fff;
    font-weight: bold;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    text-align: center;
    border: none;
    outline: none;
    cursor: pointer;
}
.copy-btn.contact-btn:hover, .contact-btn:hover {
    background: linear-gradient(90deg, #4ecdc4 0%, #ff6b6b 100%);
    box-shadow: 0 4px 20px rgba(78,205,196,0.18);
    transform: translateY(-2px) scale(1.04);
}

.email-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--text-color);
    color: white;
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card, .app-screenshots img {
    animation: fadeIn 0.5s ease-out forwards;
}

.lao-banner {
    width: 100%;
    height: 28px;
    background: url('images/lao-banner.png') repeat-x center/contain, linear-gradient(90deg, #f7fafc 0%, #f7fafc 100%);
    opacity: 0.15;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1.2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.btn-icon {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin-right: 8px;
}

.features,
.download-section,
.contact,
.app-showcase {
    background: rgba(255,255,255,0);
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0);
    max-width: 1100px;
    margin: 1.5rem auto 1.5rem auto;
    padding: 2.5rem 2rem;
}

.download-box,
.feature-card,
.contact-item,
.email-item {
    background: rgba(20, 20, 20, 0.45);
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.download-box h2,
.feature-card h3,
.feature-card p,
.contact-item,
.email-item,
.download-btn {
    color: #fff !important;
}

.about-section {
    background: rgba(20, 20, 20, 0.45);
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
    max-width: 980px;
    margin: 1.5rem auto 1.5rem auto;
    padding: 1rem 1.5rem;
    text-align: left;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    color: #fff !important;
}
.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
.about-text {
    font-size: 1.15rem;
    color: #fff;
    line-height: 1.8;
    max-width: 700px;
    text-align: left;
}
@media (max-width: 768px) {
    .about-section {
        padding: 1.2rem 0.5rem;
    }
    .about-text {
        font-size: 1rem;
    }
}

@media (max-width: 1100px) {
    .app-screenshots {
        gap: 1rem;
    }
    .app-screenshots img {
        max-width: 160px;
    }
}
@media (max-width: 900px) {
    .app-screenshots {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .app-screenshots img {
        max-width: 45vw;
    }
}

.about-section .about-text {
    font-size: 1.1rem;
}

.recruitment-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    position: relative;
}

.recruitment-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.recruitment-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 2px;
}

.recruitment-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
    justify-items: stretch;
    align-items: stretch;
}

.recruitment-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.recruitment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.recruitment-item:hover::before {
    left: 100%;
}

.recruitment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.recruitment-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.recruitment-item h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.recruitment-item:hover h3::after {
    width: 100px;
}

.recruitment-item p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

.recruitment-contact {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 15px;
    color: white;
}

.recruitment-contact p {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 900px) {
    .recruitment-content {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        padding: 1rem;
    }
}

.download-section h2,
.features h2,
.contact h2 {
    text-align: center;
    color: #fff;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
}

section {
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.about-section {
    margin: 1rem auto 1.5rem auto;
}
.features,
.download-section,
.contact,
.app-showcase {
    margin: 1rem auto 1rem auto;
}

/* 文字动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* 标题动画 */
.hero h1 {
    animation: fadeInUp 1s ease, breatheFloat 4s ease-in-out infinite;
}

.hero p {
    animation: fadeInUp 1s ease 0.2s backwards, breatheFloat 4s ease-in-out infinite 0.5s;
}

/* 卡片动画 */
.feature-card {
    animation: slideIn 0.8s ease backwards, breathe 4s ease-in-out infinite;
}

.feature-card:nth-child(1) {
    animation-delay: 0.2s, 0s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.4s, 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.6s, 0.4s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* 下载卡片动画 */
.download-box {
    animation: fadeInUp 0.8s ease backwards, breathe 4s ease-in-out infinite;
}

.download-box:nth-child(1) {
    animation-delay: 0.3s, 0s;
}

.download-box:nth-child(2) {
    animation-delay: 0.5s, 0.2s;
}

.download-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* 联系方式卡片动画 */
.contact-item {
    animation: slideIn 0.8s ease backwards, breathe 4s ease-in-out infinite;
}

.contact-item:nth-child(1) {
    animation-delay: 0.2s, 0s;
}

.contact-item:nth-child(2) {
    animation-delay: 0.4s, 0.2s;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* 二维码动画 */
.qr-code {
    transition: all 0.3s ease;
    animation: breatheFloat 4s ease-in-out infinite;
}

.contact-item:hover .qr-code {
    transform: scale(1.05);
}

/* 复制按钮动画 */
.copy-btn {
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.email-fb-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 38px;
    margin-top: 18px;
}
.email-block, .fb-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding-bottom: 8px;
    position: relative;
}
.email-block svg, .fb-block svg {
    margin-bottom: 10px;
    width: 32px;
    height: 32px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.email-block span, .fb-block span {
    font-weight: bold;
    font-size: 1.18rem;
    margin-bottom: 2px;
    color: #fff;
    text-align: center;
    width: 100%;
}
.email-block .contact-number {
    font-weight: normal;
    font-size: 1rem;
    margin-bottom: 10px;
    word-break: break-all;
    color: #fff;
    text-align: center;
    width: 100%;
}
.email-block .copy-btn, .fb-block .contact-btn {
    width: 110px;
    margin: 10px auto 0 auto;
    display: block;
    font-size: 1rem;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(78,205,196,0.10);
    background: linear-gradient(90deg, #ff6b6b 0%, #4ecdc4 100%);
    color: #fff;
    font-weight: bold;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    text-align: center;
}
.email-block .copy-btn:hover, .fb-block .contact-btn:hover {
    background: linear-gradient(90deg, #4ecdc4 0%, #ff6b6b 100%);
    box-shadow: 0 4px 20px rgba(78,205,196,0.18);
    transform: translateY(-2px) scale(1.04);
}
.fb-block {
    border-top: 1px solid rgba(255,255,255,0.13);
    padding-top: 18px;
}
.fb-block a.contact-btn {
    margin-top: 10px;
    padding: 0.5rem 0;
    width: 110px;
    text-align: center;
    border-radius: 24px;
}
.fb-block a {
    margin-bottom: 2px;
    color: #4ecdc4;
    font-weight: bold;
    font-size: 1.05rem;
    text-decoration: underline;
    word-break: break-all;
    text-align: center;
    width: 100%;
    display: block;
}
.fb-block svg {
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 700px) {
    .email-fb-row {
        gap: 18px;
        margin-top: 8px;
    }
    .fb-block {
        padding-top: 10px;
    }
}

.email-title {
    display: block;
    text-align: center;
    font-size: 1.18rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
