* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fa;
    color: #17202a;
}

.container {
    width: min(100% - 32px, 760px);
    margin: 0 auto;
}

.header {
    padding: 24px 0;
}

.logo {
    font-size: 20px;
    font-weight: 700;
}

.card {
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.progress {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

h1 {
    font-size: 32px;
    margin: 0 0 12px;
}

.intro {
    color: #667085;
    line-height: 1.6;
    margin-bottom: 28px;
}

.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.choice {
    border: 2px solid #e4e7ec;
    border-radius: 14px;
    padding: 24px;
    cursor: pointer;
    transition: 0.2s;
    background: white;
}

.choice:hover {
    border-color: #1d4ed8;
    transform: translateY(-2px);
}

.choice-icon {
    font-size: 34px;
    margin-bottom: 12px;
}

.choice-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.choice-description {
    color: #667085;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .card {
        padding: 24px;
    }

    h1 {
        font-size: 26px;
    }

    .choice-grid {
        grid-template-columns: 1fr;
    }
}

.navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
    gap: 12px;
}

.button {
    border: 0;
    border-radius: 10px;
    padding: 13px 22px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.button-primary {
    background: #1d4ed8;
    color: white;
}

.button-primary:hover:not(:disabled) {
    background: #1e40af;
}

.button-primary:disabled {
    background: #d0d5dd;
    cursor: not-allowed;
}

.button-secondary {
    background: #f2f4f7;
    color: #344054;
}

.button-secondary:hover {
    background: #e4e7ec;
}

.choice.selected {
    border-color: #1d4ed8;
    background: #eff6ff;
}

@media (max-width: 600px) {
    .navigation {
        flex-direction: column-reverse;
    }

    .button {
        width: 100%;
    }
}

.work-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.work-option {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 2px solid #e4e7ec;
    border-radius: 14px;
    padding: 18px;
    cursor: pointer;
    background: white;
    transition: 0.2s;
}

.work-option:hover {
    border-color: #1d4ed8;
    transform: translateY(-2px);
}

.work-option.selected {
    border-color: #1d4ed8;
    background: #eff6ff;
}

.work-icon {
    font-size: 30px;
    min-width: 42px;
    text-align: center;
}

.selection-summary {
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 10px;
    background: #f2f4f7;
    color: #475467;
    font-size: 14px;
}

@media (max-width: 600px) {

    .work-options {
        grid-template-columns: 1fr;
    }

}

.form-section {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.form-section h2 {
    margin: 0 0 8px;
    font-size: 18px;
}

.section-description {
    color: #6b7280;
    margin-bottom: 16px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group small {
    margin-top: 6px;
    color: #6b7280;
}

.choice-grid-small {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 700px) {

    .form-grid {
        grid-template-columns: 1fr;
    }

    .choice-grid-small {
        grid-template-columns: 1fr;
    }
}

/* STAP 7 - FOTO UPLOAD */

.photo-upload {
    margin-top: 16px;
}

.photo-upload input[type="file"] {
    display: none;
}

.photo-upload-button {
    display: inline-block;
    padding: 14px 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    font-weight: 600;
    cursor: pointer;
}

.photo-upload-button:hover {
    background: #f9fafb;
}

.photo-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.photo-item {
    position: relative;
}

.photo-item img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.photo-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    font-size: 16px;
}

@media (max-width: 700px) {

    .photo-preview {
        grid-template-columns: 1fr;
    }

    .photo-item img {
        height: 220px;
    }
}
