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

body {
    background-color: #04095b;
    background-image: url('The great employment banner.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-attachment: scroll;
    min-height: 100vh;
}

.content {
    min-height: 1300px;
}

.button-container {
    position: absolute;
    top: 370px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.action-button {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #1a4d8f;
    border: 2px solid white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.action-button:hover {
    background-color: #2563b8;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

.action-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.top-buttons-container {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.top-right-button {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #1a4d8f;
    border: 2px solid white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.top-right-button:hover {
    background-color: #2563b8;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

.top-right-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.info-section {
    position: absolute;
    top: 706px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    text-align: center;
    z-index: 10;
}

.info-header {
    color: white;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.info-text {
    color: white;
    font-size: 18px;
    line-height: 1.8;
    background-color: rgba(26, 77, 143, 0.7);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.proof-button {
    position: absolute;
    top: 1150px;
    left: 50%;
    transform: translateX(-50%);
    padding: 18px 50px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-color: #1a4d8f;
    border: 2px solid white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.proof-button:hover {
    background-color: #2563b8;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

.proof-button:active {
    transform: translateX(-50%) translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.instructions-content {
    background-color: rgba(26, 77, 143, 0.95);
    padding: 50px;
    border-radius: 16px;
    border: 3px solid white;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.instructions-header {
    color: white;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.instructions-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.instruction-step {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.instruction-step h3 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.instruction-step p {
    color: white;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.download-button {
    display: inline-block;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #1a4d8f;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.download-button:hover {
    background-color: #2563b8;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

.download-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.done-button {
    display: block;
    margin: 40px auto 0;
    padding: 15px 50px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #1a4d8f;
    border: 2px solid white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.done-button:hover {
    background-color: #2563b8;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

.done-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
