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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
    font-size: 15px;
}

.container {
    max-width: 640px;
    margin: 0 auto;
    padding: 48px 24px 64px;
}

.logo {
    width: 56px;
    height: 56px;
    color: #299f55;
    margin-bottom: 32px;
}

h1 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
}

h2 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #538dc2;
    margin: 32px 0 12px;
}

p {
    margin-bottom: 12px;
    color: #444;
}

ul {
    list-style: none;
    margin-bottom: 12px;
}

li {
    padding-left: 16px;
    margin-bottom: 6px;
    color: #444;
    position: relative;
}

li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #299f55;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.tag {
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 4px;
    background: #f5f5f5;
    color: #555;
}

.tag--salary {
    background: #e8f5ed;
    color: #299f55;
    font-weight: 500;
}

/* Tech stack */
.tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tech span {
    font-size: 13px;
    padding: 3px 8px;
    background: #fff8f0;
    color: #c77a30;
    border-radius: 3px;
}

/* Contact section */
.contact {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.contact a {
    color: #299f55;
    text-decoration: none;
}

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

/* Vacancy cards */
.vacancy {
    display: block;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 12px;
}

.vacancy:hover {
    border-color: #299f55;
    box-shadow: 0 2px 8px rgba(41, 159, 85, 0.1);
}

.vacancy-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111;
}

.vacancy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #666;
}

.vacancy-salary {
    color: #299f55;
    font-weight: 500;
}

/* Footer */
.footer {
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #999;
}

.footer a {
    color: #299f55;
    text-decoration: none;
}

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

/* About section */
.about {
    color: #444;
    margin-bottom: 48px;
}

@media (max-width: 480px) {
    h1 { font-size: 24px; }
}
