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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f5f5;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: opacity 0.3s ease;
    padding: 8px 16px;
    border-radius: 4px;
}

.main-nav a:hover {
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.1);
}

.main-nav a.active {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px 20px;
    margin-top: 80px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Sections */
.section, .benefits-section, .pricing-section {
    padding: 80px 20px;
}

.section {
    background: white;
}

.benefits-section {
    background: #f9f9f9;
}

.pricing-section {
    background: white;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

/* Brand Story Section */
.brand-story-section {
    background: white;
    padding: 80px 20px;
}

.brand-story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.brand-story-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-intro {
    font-size: 1.35rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.story-conclusion {
    font-size: 1.2rem;
    font-weight: 500;
    color: #667eea;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

/* How It Works - Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.7;
}

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

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

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

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

/* Pricing */
.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #667eea;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.price-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

.included-services {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
}

.included-services li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    position: relative;
    padding-left: 30px;
}

.included-services li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
}

.included-services li:last-child {
    border-bottom: none;
}

.pricing-card .cta-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px;
    font-size: 1.2rem;
}

.pricing-card .cta-button:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 80px 20px;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.8rem;
    color: #667eea;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-company-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.footer-contact {
    margin: 15px 0;
}

.footer-contact p {
    margin: 5px 0;
    opacity: 0.9;
}

.footer-contact strong {
    font-weight: 600;
    font-size: 1.05rem;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.footer-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-nav span {
    opacity: 0.5;
}

footer p {
    opacity: 0.8;
    margin: 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-name {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .brand-story-content p {
        font-size: 1rem;
    }

    .story-intro {
        font-size: 1.15rem;
    }

    .story-conclusion {
        font-size: 1.05rem;
    }

    .steps, .benefits {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .price {
        font-size: 2.5rem;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 10px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 15px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .main-nav {
        display: none;
    }

    .header-content {
        justify-content: center;
    }
}

/* Careers Page Styles */
.careers-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 140px 20px 80px;
    text-align: center;
    color: white;
}

.careers-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.careers-hero .tagline {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
}

.careers-intro {
    background: white;
    text-align: center;
}

.job-listings-section {
    background: #f9f9f9;
    padding: 80px 20px;
}

.job-listings {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.job-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.job-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.job-location {
    color: #667eea;
    font-weight: 600;
    font-size: 0.95rem;
}

.job-type {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.job-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.job-requirements {
    margin-bottom: 25px;
}

.job-requirements strong {
    color: #333;
    display: block;
    margin-bottom: 10px;
}

.job-requirements ul {
    list-style: none;
    padding-left: 0;
}

.job-requirements li {
    color: #666;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.job-requirements li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #667eea;
    font-weight: 700;
}

.apply-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.careers-cta {
    background: white;
    text-align: center;
}

.careers-cta .cta-button {
    display: inline-block;
}

@media (max-width: 768px) {
    .careers-hero h1 {
        font-size: 2.2rem;
    }

    .careers-hero .tagline {
        font-size: 1.1rem;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

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