.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.header-content nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-content .button {
    margin-top: 0;
    padding: 8px 16px;
}

body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; 
    line-height: 1.6; 
    color: #333; 
    max-width: 1200px; 
    margin: 40px auto; 
    padding: 0 20px; 
    background-color: #fdfdfd;
}

.container { 
    display: flex; 
    align-items: center; 
    gap: 50px; 
}

.content { 
    flex: 1; 
}

.image-container { 
    flex: 1;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

h1, h2 { 
    color: #1a1a1a; 
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.button { 
    background-color: #0056b3; 
    color: white; 
    padding: 12px 24px; 
    text-decoration: none; 
    border-radius: 5px; 
    display: inline-block; 
    margin-top: 20px; 
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
}

.button:hover {
    background-color: #003d82;
}

/* Dashboard Styles */
.status-card {
    background-color: #f0f8ff;
    border-left: 5px solid #0056b3;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}
.status-text {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0;
}
.next-steps {
    margin-top: 30px;
}


/* Form Layout */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-grid p {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.form-grid label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #444;
}

.form-input {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.2);
}

.form-section-title {
    grid-column: 1 / -1;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 5px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #0056b3;
}
