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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

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

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.company-name {
    font-size: 28px;
    font-weight: 700;
    color: #0078d4;
}

.language-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    padding: 8px 16px;
    border: 2px solid #0078d4;
    background: white;
    color: #0078d4;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.lang-btn:hover {
    background: #0078d4;
    color: white;
}

/* Partner Section */
.partner-section {
    background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.partner-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
    transition: transform 0.2s ease;
    max-width: 600px;
    margin: 0 auto;
}

.partner-badge:hover {
    transform: scale(1.02);
}

.partner-badge:hover .partner-icon {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.partner-icon {
    width: 120px;
    height: 60px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.partner-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.partner-text {
    text-align: left;
}

.partner-text h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.partner-text p {
    font-size: 14px;
    opacity: 0.9;
}

.verify-link {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: white;
    color: #0078d4;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.verify-link:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Main Content */
main {
    padding: 60px 0;
}

.about-section {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.about-section h1 {
    font-size: 36px;
    color: #0078d4;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.service-card h3 {
    font-size: 22px;
    color: #0078d4;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
}

.verify-text-link {
    color: #0078d4;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
}

.verify-text-link:hover {
    color: #005a9e;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-section h2 {
    font-size: 32px;
    color: #0078d4;
    margin-bottom: 30px;
}

.contact-info {
    font-size: 16px;
    line-height: 2;
}

.contact-info strong {
    color: #0078d4;
    display: inline-block;
    width: 100px;
}

.contact-info a {
    color: #0078d4;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

footer p {
    margin: 5px 0;
}

.footer-verify {
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-lang-btn {
    margin-top: 15px;
    padding: 10px 25px;
    background: #0078d4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-lang-btn:hover {
    background: #005a9e;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .partner-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .partner-text {
        text-align: center;
    }
    
    .about-section, .contact-section {
        padding: 30px 20px;
    }
}
