
/* Club Registration Page Specific Styles */

/* Hero Section Enhancement */
.st-page-header {
    background: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 60px;
}

.st-page-header__content {
    max-width: 800px;
    margin: 0 auto;
}

.st-page-header__content h1 {
    font-size: 42px;
    font-weight: bold;
    color: #212529;
    margin-bottom: 20px;
}

.st-page-header__content p {
    font-size: 18px;
    color: #495057;
}

/* Benefits Section Styling */
.st-benefits-section {
    max-width: 1200px;
    margin: 0 auto;
    padding-left:20px;
    padding-right:20px;
    padding-top: 20px;
    padding-bottom:60px;
}

.st-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.st-benefit-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

.st-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.st-benefit-icon {
    width: 60px;
    height: 60px;
    background: #212529;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.st-benefit-item:hover .st-benefit-icon {
    transform: scale(1.1);
}

.st-benefit-icon i {
    font-size: 24px;
    color: #ffffff;
}

.st-benefit-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #212529;
    margin-bottom: 10px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-benefit-item p {
    font-size: 16px;
    font-weight: 500;
    color: #495057;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

/* Registration Form Styling */
.st-registration-form-wrapper {
    max-width: 800px;
    margin: 0 auto 60px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Support Section Styling */
.st-support-section {
    border-radius: 10px;
    max-width: 1200px;
    margin: 10 auto;
    margin-bottom: 20px;
    padding: 60px 20px;
    background: #f8f9fa;
}

.st-section-title {
    font-size: 32px;
    font-weight: bold;
    color: #212529;
    text-align: center;
    margin-bottom: 40px;
}

.st-support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.st-support-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

.st-support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.st-support-icon {
    width: 60px;
    height: 60px;
    background: #212529;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.st-support-item:hover .st-support-icon {
    transform: scale(1.1);
}

.st-support-icon i {
    font-size: 24px;
    color: #ffffff;
}

.st-support-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #212529;
    margin-bottom: 10px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-support-item p {
    font-size: 16px;
    font-weight: 500;
    color: #495057;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .st-benefits-grid,
    .st-support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .st-page-header__content h1 {
        font-size: 32px;
    }

    .st-benefits-grid,
    .st-support-grid {
        grid-template-columns: 1fr;
    }

    .st-registration-form-wrapper {
        padding: 20px;
    }

    .st-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}
