/* assets/css/rc-linkedin-trial-page.css */

.rc-trial-page-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.rc-trial-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.rc-trial-logo {
    max-height: 60px;
    margin-bottom: 15px;
}
.rc-trial-header h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}
.rc-trial-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.rc-trial-benefits {
    margin-bottom: 30px;
    background-color: #fdf1ef;
    padding: 20px;
    border-radius: 8px;
}
.rc-trial-benefits ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.rc-trial-benefits li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
    display: flex;
    align-items: center;
}
.rc-trial-benefits li i {
    color: #ed4e34;
    margin-right: 10px;
    font-size: 18px;
}

.rc-form-group {
    margin-bottom: 25px;
}
.rc-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 16px;
}
.rc-form-group label i {
    margin-right: 8px;
    color: #ed4e34;
}
.rc-required-asterisk {
    color: #ed4e34;
    margin-left: 4px;
    font-weight: bold;
}
.rc-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 15px;
    line-height: 1.5;
    transition: border-color 0.3s ease;
}
.rc-form-group textarea:focus {
    border-color: #ed4e34;
    outline: none;
    box-shadow: 0 0 0 2px rgba(237, 78, 52, 0.2);
}
.rc-form-hint {
    display: block;
    font-size: 13px;
    color: #777;
    margin-top: 6px;
    font-style: italic;
}

.rc-trial-submit-container {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
}
.rc-trial-button {
    background-color: #ed4e34;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.rc-trial-button:hover {
    background-color: #ee5f49;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(237, 78, 52, 0.3);
}
.rc-trial-button:disabled {
    background-color: #f1a399;
    cursor: not-allowed;
}
.rc-trial-button i {
    font-size: 16px;
}

.rc-trial-additional-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}
.rc-info-section {
    margin-bottom: 30px;
}
.rc-info-section h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
}
.rc-info-section h2 i {
    color: #ed4e34;
    margin-right: 10px;
    font-size: 24px;
}
.rc-info-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}
.rc-info-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}
.rc-info-section ul li {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}
.rc-info-section ul li i { /* For benefit list icons */
    color: #2ecc71; /* Green check for benefits */
    position: absolute;
    left: 0;
    top: 4px;
}

.rc-faq-item {
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: #fff;
}
.rc-faq-item[open] .rc-faq-question {
    border-bottom: 1px solid #e9e9e9;
}
.rc-faq-item[open] summary::after { /* For <details> toggle */
    transform: rotate(45deg);
}
.rc-faq-question { /* This is the <summary> tag */
    padding: 15px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    display: block;
    color: #333;
    font-size: 16px;
}
.rc-faq-question::-webkit-details-marker {
    display: none;
}
.rc-faq-question::after { /* Custom marker for <summary> */
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #ed4e34;
    transition: transform 0.2s ease-in-out;
}
.rc-faq-answer {
    padding: 15px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    background-color: #fdfdfd;
    border-top: 1px solid #f0f0f0;
    border-radius: 0 0 8px 8px;
}
 .rc-faq-answer a {
    color: #ed4e34;
    font-weight: 500;
}
.rc-faq-answer a:hover {
    text-decoration: underline;
}

.rc-trial-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #666;
}
.rc-trial-footer a {
    color: #ed4e34;
    font-weight: 600;
    text-decoration: none;
}
.rc-trial-footer a:hover {
    text-decoration: underline;
}

/* Ensure Font Awesome icons are displayed */
.fab.fa-linkedin::before { content: "\f0e1"; font-family: "Font Awesome 5 Brands", "FontAwesome"; }
.fas.fa-file-alt::before { content: "\f15c"; font-family: "Font Awesome 5 Free", "FontAwesome"; font-weight: 900; }
.fas.fa-id-card::before { content: "\f2c2"; font-family: "Font Awesome 5 Free", "FontAwesome"; font-weight: 900; }
.fas.fa-rocket::before { content: "\f135"; font-family: "Font Awesome 5 Free", "FontAwesome"; font-weight: 900; }
.fas.fa-spinner::before { content: "\f110"; font-family: "Font Awesome 5 Free", "FontAwesome"; font-weight: 900; }
.fas.fa-check-circle::before { content: "\f058"; font-family: "Font Awesome 5 Free", "FontAwesome"; font-weight: 900; }
.fas.fa-question-circle::before { content: "\f059"; font-family: "Font Awesome 5 Free", "FontAwesome"; font-weight: 900; }
.fas.fa-comments::before { content: "\f086"; font-family: "Font Awesome 5 Free", "FontAwesome"; font-weight: 900; }
.fas.fa-search-plus::before { content: "\f00e"; font-family: "Font Awesome 5 Free", "FontAwesome"; font-weight: 900; }
.fas.fa-bullseye::before { content: "\f140"; font-family: "Font Awesome 5 Free", "FontAwesome"; font-weight: 900; }
.fas.fa-handshake::before { content: "\f2b5"; font-family: "Font Awesome 5 Free", "FontAwesome"; font-weight: 900; }
.fas.fa-briefcase::before { content: "\f0b1"; font-family: "Font Awesome 5 Free", "FontAwesome"; font-weight: 900; }