/* Import a clean, modern font */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

/* Root variables for easy color changes */
:root {
    --primary-color: #ec008c;
    /* Pink/Magenta brand color */
    --secondary-color: #333;
    --light-bg: #f8f9fa;
}

/* Global resets and typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--light-bg);
    color: var(--secondary-color);
}

/* Header / Brand Bar */
.header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.header h1 {
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
}

.header h2 {
    margin-top: 5px;
    font-weight: 400;
}

/* Main container */
.main-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
}

/* Notice area */
.notice {
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Download button area */
.download-section {
    text-align: center;
    margin-bottom: 20px;
}

.download-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
}

/* Progress bar above the form */
.progress {
    margin-bottom: 20px;
    height: 5px;
    background-color: #e0e0e0;
    border-radius: 5px;
}

.progress-bar {
    background-color: var(--primary-color);
    height: 5px;
    width: 20%;
    transition: width 0.3s ease;
    border-radius: 5px;
}

/* Form container */
.form-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

/* Steps navigation (optional alternative to the progress bar) */
.steps-nav {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
    list-style: none;
}

.steps-nav li {
    padding: 10px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.steps-nav li.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

/* Multi-step form transitions */
.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons styling */
.btn {
    cursor: pointer;
    border: none;
    border-radius: 4px;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 16px;
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
    padding: 8px 16px;
}

.btn-success {
    background-color: #28a745;
    color: #fff;
    padding: 8px 16px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Confirmation Table Styling */
/* Section title styling */
.confirmation-title {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px;
    font-size: 18px;
    margin-bottom: 5px;
}

/* Table for displaying field names and values */
.confirmation-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.confirmation-table th,
.confirmation-table td {
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.confirmation-table th {
    font-weight: bold;
    background-color: transparent;
    /* No pink background for field names */
    color: var(--secondary-color);
    font-size: 16px;
}

.confirmation-table td {
    font-size: 14px;
}

.steps-nav {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 15px;
    padding: 0;
}

.steps-nav li {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    margin: 0 10px;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}


.steps-nav li.active {
    background-color: var(--primary-color);
    color: #fff;
}

#stepHeading {
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 20px;
}