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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

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

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #764ba2;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #764ba2;
    padding: 5px;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

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

.nav-links a:hover {
    color: #764ba2;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(118, 75, 162, 0.4);
}

.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%), url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=professional%20remote%20work%20office%20setup%20with%20laptop%20and%20coffee%20in%20modern%20home%20environment%2C%20soft%20lighting%2C%20professional%20atmosphere&image_size=landscape_16_9');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero .cta-button {
    background: white;
    color: #764ba2;
    padding: 15px 40px;
    font-size: 18px;
}

.hero .cta-button:hover {
    background: #f0f0f0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #764ba2;
    margin-bottom: 60px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.job-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    height: 100%;
}

.job-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.job-card-link:hover .job-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(118, 75, 162, 0.2);
    border-color: #764ba2;
}

.job-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.job-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.job-card h3 {
    color: #764ba2;
    font-size: 24px;
    margin-bottom: 15px;
}

.job-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.job-tag {
    background: #e8e9ff;
    color: #764ba2;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.job-salary {
    font-size: 18px;
    font-weight: bold;
    color: #764ba2;
}

.testimonials {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
}

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

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-info h4 {
    color: #764ba2;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: #666;
    font-size: 14px;
}

.testimonial-text {
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-rating {
    color: #ffd700;
    font-size: 20px;
    margin-top: 15px;
}

.benefits {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.benefit-card h3 {
    color: #764ba2;
    font-size: 20px;
    margin-bottom: 15px;
}

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

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-section .cta-button {
    background: white;
    color: #764ba2;
    padding: 18px 50px;
    font-size: 20px;
}

footer {
    background: #2d1b4e;
    color: white;
    padding: 50px 0 30px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #b8a8e0;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #e0d0ff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b8a8e0;
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    .logo {
        font-size: 20px;
    }

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

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 16px;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    header .cta-button {
        display: none;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .hero .cta-button {
        padding: 14px 35px;
        font-size: 16px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .jobs-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .job-card,
    .testimonial-card,
    .benefit-card {
        padding: 25px;
    }

    .job-icon,
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .job-icon img,
    .testimonial-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .job-card h3 {
        font-size: 20px;
    }

    .job-card p {
        font-size: 14px;
    }

    .job-tag {
        font-size: 12px;
        padding: 4px 12px;
    }

    .job-salary {
        font-size: 16px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }

    .benefit-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .benefit-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .benefit-card p {
        font-size: 14px;
    }

    .testimonial-info h4 {
        font-size: 16px;
    }

    .testimonial-info p {
        font-size: 13px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-rating {
        font-size: 18px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-section h2 {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .cta-section p {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .cta-section .cta-button {
        padding: 15px 35px;
        font-size: 16px;
    }

    footer {
        padding: 40px 0 20px;
    }

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

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-section ul li a {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 13px;
        padding-top: 20px;
    }
}

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

    header {
        padding: 12px 0;
    }

    .logo {
        font-size: 18px;
    }

    .mobile-menu-btn {
        font-size: 24px;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.4;
    }

    .hero p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .hero .cta-button {
        padding: 12px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .job-card,
    .testimonial-card {
        padding: 20px;
    }

    .benefit-card {
        padding: 20px 15px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .job-icon,
    .testimonial-avatar {
        width: 45px;
        height: 45px;
    }

    .job-icon img,
    .testimonial-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .job-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .job-card p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .job-details {
        margin-bottom: 15px;
    }

    .job-tag {
        font-size: 11px;
        padding: 3px 10px;
    }

    .job-salary {
        font-size: 15px;
    }

    .benefit-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .benefit-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .benefit-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .benefit-card p {
        font-size: 13px;
    }

    .testimonial-header {
        margin-bottom: 15px;
    }

    .testimonial-avatar {
        margin-right: 12px;
    }

    .testimonial-info h4 {
        font-size: 15px;
    }

    .testimonial-info p {
        font-size: 12px;
    }

    .testimonial-text {
        font-size: 13px;
        line-height: 1.6;
    }

    .testimonial-rating {
        font-size: 16px;
        margin-top: 12px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .cta-section p {
        font-size: 15px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .cta-section .cta-button {
        padding: 14px 30px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }

    footer {
        padding: 30px 0 20px;
    }

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

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-section ul li a {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 12px;
        padding-top: 15px;
    }
}