
/* Answer Sheet Section */
.answer-sheet {
    padding: 2rem 1rem;
}

.sheet-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.answer-sheet h1 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}

.answer-sheet h2 {
    font-size: 1.4rem;
    color: #000;
    margin: 1.5rem 0;
    font-weight: bold;
}

/* Candidate Details */
.candidate-details {
    margin-bottom: 2rem;
    text-align: left;
    border: 1px solid #000;
    padding: 1rem;
}

.detail-row {
    margin-bottom: 1rem;
}

.detail-row label {
    display: block;
    font-size: 1rem;
    color: #000;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.detail-row input {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #000;
    border-radius: 0;
    background-color: #fff;
}

.combined-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.sub-row {
    flex: 1;
}

.test-date {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

.date-input {
    width: 50px;
    text-align: center;
}

.date-input#testYear {
    width: 70px;
}

/* Answers Section */
.answers-section {
    border: 1px solid #000;
    padding: 1rem;
}

.answers-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.answers-column {
    flex: 1;
}

.answer-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.answer-row span {
    width: 30px;
    font-size: 1rem;
    font-weight: bold;
    text-align: right;
    margin-right: 0.5rem;
}

.answer-row input {
    flex: 1;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #000;
    border-radius: 0;
    background-color: #fff;
}


.cta-btn:hover {
    background: #fc536c;
}

/* Watermark Styles */
.watermark {
    position: fixed; /* Fixed position to cover the entire page */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%) rotate(-45deg); /* Center and rotate */
    font-size: 3rem; /* Large font size */
    color: rgba(0, 0, 0, 0.1); /* Semi-transparent text */
    opacity: 60%;
    pointer-events: none; /* Ensure it doesn't block interactions */
    z-index: 9999; /* Ensure it's on top of other content */
    white-space: nowrap; /* Prevent text from wrapping */
    font-weight: bold; /* Bold text */
    user-select: none; /* Prevent text selection */
}

/* Media Queries */
@media (min-width: 768px) {
    .detail-row {
        display: block;
        width: 100%;
    }

    .combined-row {
        width: 100%;
    }

    .answers-grid {
        gap: 3rem;
    }
}

/* Media Query for max-width: 600px */
@media (max-width: 600px) {
    /* Answer Sheet Section */
    .answer-sheet {
        padding: 1rem 0.5rem;
        width: 100vw;
    }

    .sheet-container {
        max-width: 100%;
        padding: 0 0.5rem;

    }

    .answer-sheet h1 {
        font-size: 1.5rem;
    }

    .answer-sheet h2 {
        font-size: 1.2rem;
        margin: 1rem 0;
    }

    /* Candidate Details */
    .candidate-details {
        padding: 0.5rem;
    }

    .detail-row label {
        font-size: 0.9rem;
    }

    .detail-row input {
        font-size: 0.9rem;
        padding: 0.4rem;
    }

    .combined-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .test-date {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .date-input {
        width: 100%;
    }

    .date-input#testYear {
        width: 100%;
    }

    /* Answers Section */
    .answers-section {
        padding: 0.5rem;
    }

    .answers-grid {
        flex-direction: column;
        gap: 1rem;
        padding-right: 10px;
    }

    .answer-row span {
        width: 25px;
        font-size: 0.9rem;
    }

    .answer-row input {
        font-size: 0.9rem;
        padding: 0.4rem;
    }
}

/* Intriduction */

/* IELTS Listening Practice Answer Sheet Section */
.listening-sheet {
    background: #ffffff;
    padding: 2rem 1rem;
}

.listening-sheet-container {
    max-width: 1200px;
    margin: 0 auto;
}

.listening-sheet h1 {
    font-size: 2rem;
    color: #d81c38;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.listening-sheet p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.listening-sheet .disclaimer {
    font-size: 0.95rem;
    color: #333;
    background: #f5f6f5;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.listening-why, .listening-how-to-use, .listening-features, .listening-sample, .listening-trends, .listening-tips, .listening-cta {
    margin-bottom: 2rem;
}

.listening-sheet h2 {
    font-size: 1.6rem;
    color: #d81c38;
    margin-bottom: 1rem;
    text-align: center;
}

.features-list, .steps-list, .feedback-list {
    list-style: none;
    padding-left: 0;
}

.features-list li, .steps-list li, .feedback-list li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li:before, .feedback-list li:before {
    content: '\f058'; /* FontAwesome check-circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #f58220;
    position: absolute;
    left: 0;
    top: 2px;
}

.steps-list li:before {
    content: counter(step) '.'; /* Numbered list */
    counter-increment: step;
    color: #f58220;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.steps-list {
    counter-reset: step;
}

.listening-sample .feedback-list {
    background: #f5f6f5;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.listening-cta {
    text-align: center;
}

.listening-cta p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.listening-cta .cta-btn {
    background: #f58220;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .listening-sheet h1 {
        font-size: 2.5rem;
    }

    .listening-sheet h2 {
        font-size: 1.8rem;
    }

    .features-list, .feedback-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .steps-list {
        max-width: 600px;
        margin: 0 auto;
    }

    .listening-cta .cta-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .listening-sheet {
        padding: 3rem 1rem;
    }

    .listening-sheet h1 {
        font-size: 3rem;
    }
}