/* start.php - Help Landing Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f7f9f5;
    color: #111;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.scroll {
    min-height: 100vh;
    background-color: #f7f9f5;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 16px;
    padding-bottom: 40px;
    margin-top: 30px;
}

/* Header */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
}

.title {
    font-size: 30px;
    font-weight: 400;
    color: #111;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 20px;
}

.subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    max-width: 320px;
    margin-bottom: 10px;
}

/* Card Grid */
.grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.card-wrapper {
    flex: 1 1 auto;
    min-width: calc(50% - 8px);
    max-width: 100%;
}

.card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 18px;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1.3px solid #d5dfd9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    height: 100%;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    border-color: #829a81;
}

.card-title {
    font-size: 24px;
    font-weight: 500;
    color: #829a81;
    margin-bottom: 6px;
    text-align: center;
}

.card-description {
    font-size: 13px;
    color: #555;
    line-height: 18px;
    text-align: center;
}

/* Footer Links */
.footer-links {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #d5dfd9;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #829a81;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .card-wrapper {
        min-width: 100%;
    }
}
