body {
    font-family: 'Inter', Arial, sans-serif;
    background: #f7f7fa;
    margin: 0;
    color: #222;
}
header, footer {
    background: white;
    box-shadow: 0 2px 10px #eee;
}
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 28px 18px;
}
.logo {
    max-width: 180px;
    margin-bottom: 18px;
}
h1, h2, h3 {
    color: #222;
    margin-top: 0.7em;
}
.cta-button, .pdf-actions button {
    display: inline-block;
    background: #1e74ff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.cta-button:hover, .pdf-actions button:hover {
    background: #155dc1;
}
.tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.tab-link {
    background: #eaeaea;
    border: none;
    padding: 10px 18px;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}
.tab-link.active {
    background: #1e74ff;
    color: white;
}
.tab-content {
    display: none;
    background: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 1px 8px #eee;
    padding: 24px;
    margin-bottom: 28px;
}
.tab-content.active {
    display: block;
}
label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: #444;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], textarea {
    width: 100%;
    padding: 7px 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: #fafdff;
    box-sizing: border-box;
}
textarea {
    resize: vertical;
}
button[type="button"], .prev-btn, .next-btn {
    background: #f3f3f3;
    color: #1e74ff;
    border: 1px solid #dbe5ff;
    padding: 7px 14px;
    margin: 7px 7px 0 0;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}
button[type="button"]:hover, .prev-btn:hover, .next-btn:hover {
    background: #e6efff;
}
.experience-block, .education-block {
    background: #f7fbff;
    border: 1px solid #e0e6f7;
    border-radius: 6px;
    margin-bottom: 18px;
    padding: 15px 12px 8px 12px;
    position: relative;
}
.experience-block hr, .education-block hr {
    border: none;
    border-top: 1px solid #dde4f3;
    margin: 10px 0 0 0;
}
.pdf-actions {
    margin: 18px 0 0 0;
}
.pdf-actions button {
    margin-right: 12px;
}
#pdf-preview {
    border: 1px solid #d0d8e2;
    border-radius: 4px;
    margin: 14px 0 0 0;
    width: 100%;
    min-height: 420px;
    background: #fff;
}
#cv-result {
    text-align: center;
}
footer {
    font-size: 0.97rem;
    color: #666;
    padding: 26px 0 18px 0;
    margin-top: 40px;
    text-align: center;
}
@media (max-width: 600px) {
    .container {
        padding: 18px 4vw;
    }
    .tab-content {
        padding: 15px 4vw;
    }
    .logo {
        max-width: 120px;
    }
    h1 {
        font-size: 1.4rem;
    }
    .tabs {
        flex-direction: column;
    }
}