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

body {
    font-family: 'Roboto', 'Myanmar Text', 'Padauk', 'Noto Sans Myanmar', 'Pyidaungsu', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #F56E59 0%, #ff8e70 50%, #ffb199 100%);
    min-height: 100vh;
}

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

.bayarsantai-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.trustkyat-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bayarsantai-logo,
.trustkyat-logo {
    width: 60px;
    height: 60px;
    background-image: url('../img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.trustkyat-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.5px;
}

.bayarsantai-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.bayarsantai-nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.bayarsantai-nav-menu li a:hover {
    color: #F56E59;
}

.language-switcher {
    display: flex;
    gap: 8px;
    margin-left: 20px;
    display: none;
}

.lang-btn {
    padding: 8px 16px;
    border: 2px solid #F56E59;
    background: transparent;
    color: #F56E59;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.lang-btn:hover {
    background: #F56E59;
    color: white;
    transform: translateY(-2px);
}

.lang-btn.active {
    background: #F56E59;
    color: white;
}

.bayarsantai-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.bayarsantai-main {
    background: linear-gradient(135deg, #F56E59 0%, #ff8e70 50%, #ffb199 100%);
    /* background: #FA7E64; */
}

.bayarsantai-hero {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.bayarsantai-hero-content {
    flex: 1;
    color: white;
}

.bayarsantai-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.bayarsantai-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.bayarsantai-hero-buttons {
    display: flex;
    gap: 1rem;
}

.bayarsantai-btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bayarsantai-btn-primary:hover {
    background: #5C428F;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(92, 66, 143, 0.3);
}

.bayarsantai-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bayarsantai-btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.bayarsantai-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bayarsantai-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
}

.bayarsantai-features {
    background: white;
    padding: 6rem 0;
}

.bayarsantai-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

.bayarsantai-feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bayarsantai-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.bayarsantai-feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: block;
    margin: 0 auto;
}

.bayarsantai-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.bayarsantai-feature-card p {
    color: #666;
    line-height: 1.6;
}

.bayarsantai-how-it-works {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 0;
}

.bayarsantai-loan-details {
    background: white;
    padding: 6rem 0;
}

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

.bayarsantai-detail-card {
    background: linear-gradient(135deg, #F56E59 0%, #ff8e70 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(245, 110, 89, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bayarsantai-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 110, 89, 0.3);
}

.bayarsantai-detail-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bayarsantai-detail-card p {
    line-height: 1.6;
    opacity: 0.9;
}

.detail-info {
    line-height: 1.6;
    opacity: 0.9;
}

.detail-info div {
    margin-bottom: 0.5rem;
}

.detail-info div:last-child {
    margin-bottom: 0;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0.9;
}

.requirements-list li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
    line-height: 1.4;
}

.requirements-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
}

.bayarsantai-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 3rem;
}

.bayarsantai-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.bayarsantai-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F56E59, #ff8e70);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(245, 110, 89, 0.3);
}

.bayarsantai-step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.bayarsantai-step-content p {
    color: #666;
    line-height: 1.6;
}

.bayarsantai-testimonials {
    background: white;
    padding: 6rem 0;
}

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

.bayarsantai-testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bayarsantai-testimonial-card:hover {
    transform: translateY(-5px);
}

.bayarsantai-testimonial-avatar {
    margin-bottom: 1.5rem;
}

.bayarsantai-testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.bayarsantai-testimonial-content p {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bayarsantai-testimonial-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.bayarsantai-testimonial-content span {
    color: #F56E59;
    font-weight: 500;
}

.bayarsantai-cta {
    background: linear-gradient(135deg, #F56E59 0%, #ff8e70 50%, #ffb199 100%);
    padding: 6rem 0;
    color: white;
}

.bayarsantai-cta .bayarsantai-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.bayarsantai-cta-content {
    flex: 1;
}

.bayarsantai-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.bayarsantai-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.bayarsantai-cta .bayarsantai-btn-primary {
    background: #5C428F;
    color: white;
    border: 2px solid #5C428F;
}

.bayarsantai-cta .bayarsantai-btn-primary:hover {
    background: white;
    color: #5C428F;
    border: 2px solid #5C428F;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(92, 66, 143, 0.3);
}

.bayarsantai-cta-image {
    flex: 1;
    text-align: center;
}

.bayarsantai-cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.bayarsantai-footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 0 2rem;
}

.bayarsantai-footer .trustkyat-text {
    color: white;
}

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

.bayarsantai-footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bayarsantai-footer-section ul {
    list-style: none;
}

.bayarsantai-footer-section ul li {
    margin-bottom: 0.5rem;
}

.bayarsantai-footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bayarsantai-footer-section a:hover {
    color: #F56E59;
}

.bayarsantai-footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.bayarsantai-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Products Page Styles */
.product-hero {
    background: linear-gradient(135deg, #F56E59 0%, #ff8e70 50%, #ffb199 100%);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.product-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.product-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.product-description {
    padding: 4rem 0;
    background: white;
}

.description-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
}

.important-note {
    background: #f8f9fa;
    border-left: 4px solid #F56E59;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.important-note p {
    margin: 0;
    color: #666;
    font-style: italic;
}

.key-advantages {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

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

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #F56E59, #ff8e70);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.advantage-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

.application-requirements {
    background: white;
    padding: 4rem 0;
}

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

.requirement-card {
    background: linear-gradient(135deg, #F56E59 0%, #ff8e70 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(245, 110, 89, 0.3);
    transition: transform 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
}

.requirement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.requirement-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.requirement-card p {
    line-height: 1.6;
    opacity: 0.9;
}

.detailed-loan-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

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

.loan-detail-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #F56E59;
}

.loan-detail-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.loan-detail-item p {
    font-size: 1.1rem;
    color: #F56E59;
    font-weight: 600;
}

.loan-calculation {
    background: white;
    padding: 4rem 0;
}

.calculation-example {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.calculation-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.calculation-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calc-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #F56E59;
}

.calc-step.highlight {
    background: linear-gradient(135deg, #F56E59, #ff8e70);
    color: white;
    font-weight: 600;
}

.calc-label {
    font-weight: 500;
}

.calc-value {
    font-weight: 600;
    color: #F56E59;
}

.calc-step.highlight .calc-value {
    color: white;
}



.calculation-note p {
    margin: 0;
    color: #1976d2;
    line-height: 1.6;
}

.contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

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

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

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

.final-cta {
    background: linear-gradient(135deg, #F56E59 0%, #ff8e70 50%, #ffb199 100%);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.final-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.bayarsantai-btn-primary.large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.bayarsantai-nav-menu a.active {
    color: #F56E59;
    font-weight: 600;
}

/* 联系方式卡片美化 */
.contact-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.contact-card {
    background: linear-gradient(135deg, #fff 60%, #f8f9fa 100%);
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(92,66,143,0.10);
    padding: 2.2rem 2rem 1.5rem 2rem;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1.5px solid #f3e6ff;
}
.contact-card:hover {
    box-shadow: 0 12px 32px rgba(92,66,143,0.18);
    transform: translateY(-4px) scale(1.03);
}
.contact-card .contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #F56E59;
}
.contact-card h3 {
    font-size: 1.15rem;
    color: #5C428F;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.contact-card p {
    font-size: 1.08rem;
    color: #333;
    text-align: center;
    margin: 0;
}
@media (max-width: 800px) {
    .contact-cards {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .contact-card {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .bayarsantai-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 10px 10px;
    }
    
    .bayarsantai-nav-menu.active {
        display: flex;
    }
    
    .bayarsantai-menu-toggle {
        display: block;
    }
    
    .language-switcher {
        margin-left: 0;
        margin-top: 10px;
        justify-content: center;
    }
    
    .lang-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .bayarsantai-hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .bayarsantai-hero-title {
        font-size: 2.5rem;
    }
    
    .bayarsantai-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .bayarsantai-steps {
        flex-direction: column;
        gap: 3rem;
    }
    
    .bayarsantai-cta .bayarsantai-container {
        flex-direction: column;
        text-align: center;
    }
    
    .bayarsantai-features-grid {
        grid-template-columns: 1fr;
    }
    
    .bayarsantai-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .bayarsantai-details-grid {
        grid-template-columns: 1fr;
    }
    
    .trustkyat-text {
        font-size: 1.5rem;
    }
    
    .trustkyat-brand {
        gap: 8px;
    }
    
    /* Products Page Mobile Styles */
    .product-hero-content h1 {
        font-size: 2rem;
    }
    
    .product-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .loan-details-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .calculation-example {
        padding: 1.5rem;
    }
    
    .calc-step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .final-cta .cta-content h2 {
        font-size: 2rem;
    }
} 

.product-note {
    background: #FFF3ED;
    border-left: 4px solid #F56E59;
    color: #F56E59;
    padding: 1.2em 1.5em;
    border-radius: 12px;
    margin: 1.5em 0;
    font-size: 1.05rem;
    line-height: 1.8;
} 

/* 隐私协议页内容卡片优化 */
.privacy-section-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(92,66,143,0.07);
    padding: 2.5rem 2rem;
    margin-bottom: 2.5em;
    position: relative;
    z-index: 2;
}
.privacy-section-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #F56E59;
    border-left: 5px solid #F56E59;
    padding-left: 0.7em;
    margin-bottom: 1em;
}
.privacy-section-card p {
    font-size: 1.08rem;
    line-height: 2;
    color: #333;
    margin-bottom: 1.2em;
}
@media (max-width: 768px) {
    .privacy-section-card {
        padding: 1.2rem 0.7rem;
        border-radius: 12px;
    }
    .privacy-section-card h2 {
        font-size: 1.1rem;
        padding-left: 0.5em;
    }
    .privacy-section-card p {
        font-size: 0.98rem;
    }
} 