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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(345, 100%, 54%);
}

.btn-header {
    display: inline-block;
    background: hsl(345, 100%, 54%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background: hsl(345, 100%, 44%);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, hsl(345, 100%, 54%) 0%, hsl(345, 100%, 64%) 100%);
    color: white;
    padding: 3rem 0 3rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.salary {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    /*display: flex;*/
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: hsl(345, 100%, 54%);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.stat-card {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background: white;
    color: hsl(345, 100%, 54%);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
}

.stat-text {
    font-size: 0.875rem;
}

/* Benefits Section */
.benefits {
    padding: 3.5rem 0;
    background: hsl(345, 35%, 98%);
}

.benefits h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 10px 30px -10px hsl(345, 100%, 54%, 0.3);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #6b7280;
}

/* Vacancies Section */
.vacancies {
    padding: 3.5rem 0;
    background: #ffffff;
}

.vacancies h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    margin-bottom: 4rem;
}

.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.vacancy-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vacancy-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: hsl(345, 100%, 54%);
}

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

.vacancy-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.vacancy-subtitle {
    font-size: 1rem;
    color: hsl(345, 100%, 54%);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.vacancy-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.vacancy-salary {
    font-size: 1.25rem;
    font-weight: bold;
    color: hsl(345, 100%, 54%);
    background: hsl(345, 35%, 95%);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: inline-block;
}

/* Application Form Section */
.application-form-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, hsl(345, 100%, 54%) 0%, hsl(345, 100%, 64%) 100%);
}

.application-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.application-form h2 {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2rem;
}

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

.form-input {
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-form {
    background: white;
    color: hsl(345, 100%, 54%);
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-form:hover {
    background: rgba(255, 255, 255, 0.9);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

/* Calculator Section */
.calculator {
    padding: 3.5rem 0;
    background: hsl(345, 35%, 98%);
}

.calculator h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    margin-bottom: 4rem;
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.calculator-inputs {
    background: white;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.input-group input[type="range"] {
    width: 100%;
    margin-bottom: 0.5rem;
}

.input-group span {
    font-weight: bold;
    color: hsl(345, 100%, 54%);
    font-size: 1.1rem;
}

.input-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    background: white;
}

.calculator-result {
    background: linear-gradient(135deg, hsl(345, 100%, 54%) 0%, hsl(345, 100%, 64%) 100%);
    padding: 2.5rem;
    border-radius: 0.75rem;
    color: white;
    text-align: center;
}

.income-display {
    margin-bottom: 1rem;
}

.income-weekly, .income-monthly {
    margin-bottom: 1rem;
}

.income-label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    opacity: 0.9;
}

.income-amount {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.income-monthly .income-amount {
    font-size: 2.5rem;
}

/* Requirements Section */
.requirements {
    padding: 3.5rem 0;
    background: #ffffff;
}

.requirements h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    margin-bottom: 4rem;
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.requirements-column h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: hsl(345, 100%, 54%);
    margin-bottom: 1rem;
}

.requirements-list {
    margin-bottom: 2rem;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.check-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.bonus-card {
    background: hsl(345, 35%, 96%);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin: 0 auto;
    max-width: 600px;
}

.bonus-card h3 {
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.bonus-card ul {
    list-style: none;
}

.bonus-card li {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Steps Section */
.steps {
    padding: 3.5rem 0;
    background: hsl(345, 35%, 98%);
}

.steps h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, hsl(345, 100%, 54%), hsl(345, 100%, 64%));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.step p {
    color: #6b7280;
}
.city {
    padding: 3.5rem 0;
    background: #ffffff;
}

.city h3 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
}
.city-list {
	    display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 0.5rem;
		
}
.city-list a {
    color: #1f2937;
    text-decoration: none;
    transition: all 0.3s ease;
}

.city-list a:hover {
    color: hsl(345, 100%, 54%);
}
/* FAQ Section */
.faq {
    padding: 3.5rem 0;
    background: #ffffff;
}

.faq h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
}

.faq-list {
    max-width: 768px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: hsl(345, 35%, 98%);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(345, 100%, 54%);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #6b7280;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, hsl(345, 100%, 54%), hsl(345, 100%, 64%));
    color: white;
    text-align: center;
}

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

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

.btn-cta {
    background: white;
    color: hsl(345, 100%, 54%);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: bold;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(345, 100%, 54%);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
}

.footer-section h3 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cities-list {
	    display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 0.5rem;
		
}
.cities-list a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cities-list a:hover {
    color: hsl(345, 100%, 54%);
}

.contacts p {
    color: #9ca3af;
}

.calculator-result ul {
    list-style-position: inside;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    display: table;
}

.calculator-result ul li {
    margin: 5px 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}
.email-link {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #ff144f;

}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .salary {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .calculator-content, .requirements-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vacancies-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        /*flex-direction: column;*/
		display: inline-grid;
    }
}
