/* Overview Page Styles */

/* Description page styling */
.description-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
}

.description-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    margin-top: 30px;
    text-align: center;
}

/* Title and Subtitle Section Styling */
.description-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: rgb(18, 39, 70);
    margin-bottom: 20px;
    margin-top: 0;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
}

.description-section:first-of-type p {
    font-size: 18px;
    color: #6c757d;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.description-section {
    margin-bottom: 50px;
}

.description-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.description-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.description-section ul {
    margin: 15px 0;
}

.description-section li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.5;
}

.description-section strong {
    color: #333;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
    .description-content {
        max-width: 100%;
        padding: 20px;
    }

    .description-content h2 {
        font-size: 28px;
        font-size: 30px;
        font-weight: 700;
        letter-spacing: -0.3px;
        margin-bottom: 15px;
    }

    /* .description-content h2::after {
        width: 60px;
        height: 3px;
        margin: 15px auto 0;
    } */

    .description-section:first-of-type p {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .description-section h3 {
        font-size: 20px;
    }
}

/* Start Button */
.start-button-container {
    display: flex;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 30px;
}

.start-button {
    align-items: center;
    padding: 16px 32px;
    background-color: rgb(178, 142, 93);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    width: 150px;
    text-align: center;
}

.start-button:hover {
    background-color: rgb(105, 72, 26);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.start-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.start-button .nav-arrow {
    font-size: 20px;
    font-weight: bold;
    margin-left: 12px;
}

/* Requirements List Styling */
.requirements-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.requirements-list li {
    position: relative;
    margin-bottom: 25px;
    padding: 0 0 0 40px;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: none;
}

.requirements-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    transform: none;
    width: 24px;
    height: 24px;
    background: rgb(250, 180, 17);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.requirements-list strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.requirements-list p {
    margin: 0;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Instructions List Styling */
.instructions-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.instructions-list li {
    counter-increment: step-counter;
    position: relative;
    margin-bottom: 30px;
    padding: 0 0 0 50px;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: none;
}

.instructions-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    transform: none;
    width: 32px;
    height: 32px;
    background: rgb(247, 148, 29);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-top: 5px;
}

.instructions-list strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.instructions-list p {
    margin: 0;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Responsive requirements list */
@media (max-width: 768px) {
    .requirements-list li {
        padding: 0 0 0 35px;
        margin-bottom: 20px;
    }
    
    .requirements-list li::before {
        width: 22px;
        height: 22px;
        font-size: 10px;
        left: 0;
    }
    
    .requirements-list strong {
        font-size: 16px;
    }
    
    .requirements-list p {
        font-size: 14px;
    }
}

/* Responsive instructions list */
@media (max-width: 768px) {
    .instructions-list li {
        padding: 0 0 0 40px;
        margin-bottom: 25px;
    }
    
    .instructions-list li::before {
        width: 28px;
        height: 28px;
        font-size: 12px;
        left: 0;
    }
    
    .instructions-list strong {
        font-size: 18px;
    }
    
    .instructions-list p {
        font-size: 14px;
    }
}

/* Section Divider */
.section-divider {
    border: none;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b4b4b4, transparent);
    margin: 40px auto;
}

/* Responsive start button */
@media (max-width: 768px) {
    .start-button {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
        font-size: 16px;
    }
} 