/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Home page styles */
.home-container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.home-header {
    text-align: center;
    margin-bottom: 60px;
}

.home-header h1 {
    font-size: 3em;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.home-header p {
    font-size: 1.3em;
    color: #666;
}

.home-options {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 800px;
}

.option-card {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.meetings-option {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.courses-option {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.option-icon {
    margin-bottom: 20px;
    opacity: 0.9;
}

.option-card h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 600;
}

.option-card p {
    font-size: 1.1em;
    opacity: 0.95;
    margin-bottom: 20px;
    line-height: 1.5;
}

.option-arrow {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 2em;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.option-card:hover .option-arrow {
    transform: translateX(8px);
}

/* Header styles */
.header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.header h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.header h2 {
    font-size: 1.5em;
    color: #2c3e50;
    margin-bottom: 0;
}

.course-description {
    color: #666;
    font-size: 1.1em;
}

.back-link {
    display: inline-block;
    margin-bottom: 15px;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.back-link:hover {
    color: #2980b9;
}

/* Course list styles */
.courses-list, .chapters-list {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.course-row, .chapter-row {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.course-row:hover, .chapter-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #3498db;
}

/* Thumbnail styles */
.course-thumbnail, .chapter-thumbnail {
    width: 128px;
    height: 72px;
    margin-right: 20px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f0f0;
}

.course-thumbnail img, .chapter-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-thumbnail {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.9em;
}

/* Info section styles */
.course-info, .chapter-info {
    flex: 1;
}

.course-info h2, .chapter-info h3 {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 8px;
    color: #2c3e50;
}

.course-description, .chapter-description {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.course-meta, .chapter-meta {
    color: #999;
    font-size: 0.9em;
}

.chapters-count, .chapter-length {
    background: #e8f4f8;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
    color: #3498db;
}

/* Chapter number */
.chapter-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Chapter page styles */
.chapter-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
    background: #000;
    border-radius: 8px;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.no-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2em;
}

.chapter-details {
    margin-top: 20px;
}

.chapter-duration {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 20px;
}

.chapter-details h2 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Meetings page styles */
.meetings-placeholder {
    background: white;
    border-radius: 8px;
    padding: 80px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.placeholder-content {
    max-width: 500px;
    margin: 0 auto;
}

.placeholder-content svg {
    margin-bottom: 30px;
    color: #ddd;
}

.placeholder-content h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.placeholder-content p {
    font-size: 1.2em;
    color: #999;
}

/* Responsive design */
@media (max-width: 768px) {
    .home-options {
        flex-direction: column;
        gap: 20px;
    }

    .option-card {
        padding: 30px 20px;
    }

    .home-header h1 {
        font-size: 2em;
    }

    .course-row, .chapter-row {
        flex-direction: column;
        text-align: center;
    }

    .course-thumbnail, .chapter-thumbnail {
        width: 100%;
        height: 180px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .chapter-number {
        position: absolute;
        top: 10px;
        left: 10px;
    }

    .video-container {
        padding-bottom: 75%; /* Adjust for mobile */
    }
}

/* Navigation bar */
.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
    margin-bottom: 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5em;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 8px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: #f0f0f0;
}

.nav-button {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    border-width: 0;
    transition: background-color 0.3s;
}

.nav-user {
    color: #666;
    margin-right: 10px;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: bold;
    margin-left: 8px;
}

.badge-admin {
    background: #e74c3c;
    color: white;
}

/* Alerts */
.alert {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 15px 20px;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Authentication prompt in video container */
.auth-prompt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.auth-prompt-content {
    text-align: center;
    padding: 40px;
}

.auth-prompt-content svg {
    margin-bottom: 20px;
    opacity: 0.9;
}

.auth-prompt-content h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.auth-prompt-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.auth-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #764ba2;
}

/* Devise forms styling */
.devise-form {
    max-width: 480px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.devise-form h2 {
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.field {
    margin-bottom: 20px;
}

.field label {
    display: block;
    margin-bottom: 5px;
    color: #666;
    font-weight: 500;
}

.field-inline label {
    display: inline;
    margin-bottom: 5px;
    color: #666;
    font-weight: 500;
}

.field input[type="email"],
.field input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.field input[type="checkbox"] {
    margin-right: 8px;
}

.actions {
    margin-top: 30px;
}

.actions input[type="submit"] {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.actions input[type="submit"]:hover {
    transform: translateY(-2px);
}

.devise-links {
    margin-top: 20px;
    text-align: center;
}

.devise-links a {
    color: #3498db;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.devise-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .auth-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* Meeting Form Styles */
.page-subtitle {
    font-size: 1.2em;
    color: #666;
    margin-top: 10px;
}

.meeting-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.meeting-form {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-section {
    margin-bottom: 40px;
}

.form-section h2 {
    color: #2c3e50;
    font-size: 1.6em;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.05em;
}

.form-hint {
    display: block;
    color: #666;
    font-size: 0.95em;
    margin-bottom: 8px;
    font-style: italic;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-label {
    flex: 1;
    font-weight: 400 !important;
    cursor: pointer;
    user-select: none;
}

.form-errors {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.form-errors h3 {
    color: #c00;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.form-errors ul {
    list-style: none;
    padding: 0;
}

.form-errors li {
    color: #c00;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.form-errors li:before {
    content: "•";
    position: absolute;
    left: 5px;
}

.form-actions {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.form-note {
    margin-top: 15px;
    color: #999;
    font-size: 0.95em;
}

/* Confirmation Page Styles */
.confirmation-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.confirmation-card {
    background: white;
    border-radius: 16px;
    padding: 60px 40px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.confirmation-icon {
    display: inline-block;
    color: #4caf50;
    margin-bottom: 30px;
    animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.confirmation-card h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.confirmation-message {
    margin: 30px 0;
}

.main-message {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 30px;
}

.next-steps {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    text-align: left;
}

.next-steps h2 {
    color: #2c3e50;
    font-size: 1.4em;
    margin-bottom: 20px;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 10px 0 10px 35px;
    position: relative;
    color: #555;
    font-size: 1.05em;
}

.next-steps li:before {
    content: "✓";
    position: absolute;
    left: 10px;
    color: #4caf50;
    font-weight: bold;
}

.contact-info {
    color: #666;
    font-size: 1.05em;
    margin: 20px 0;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.confirmation-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.confirmation-actions .btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    display: inline-block;
}

.confirmation-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.confirmation-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

.confirmation-actions .btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.confirmation-actions .btn-secondary:hover {
    background: #667eea;
    color: white;
}

/* Responsive Design for Meeting Forms */
@media (max-width: 768px) {
    .meeting-form {
        padding: 25px;
    }

    .form-section h2 {
        font-size: 1.3em;
    }

    .checkbox-group {
        flex-direction: column;
    }

    .confirmation-card {
        padding: 40px 20px;
    }

    .confirmation-card h1 {
        font-size: 1.8em;
    }

    .confirmation-actions {
        flex-direction: column;
    }

    .confirmation-actions .btn {
        width: 100%;
    }
}

/* Admin Panel Styles */
.admin-table-container {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid #e0e0e0;
}

.admin-table td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.admin-table tr:hover {
    background: #f8f9fa;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
}

.details-table th {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid #e0e0e0;
}

.details-table td {
    padding: 12px;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 600;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-danger {
    background: #f8d7da;
    color: #721c24;
}

.btn-small {
    display: inline-block;
    padding: 6px 12px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    transition: background 0.3s;
}

.btn-small:hover {
    background: #5a67d8;
}

/* Meeting Details Page */
.meeting-details-container {
    max-width: 900px;
    margin: 0 auto;
}

.detail-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.detail-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.detail-section:last-child {
    border-bottom: none;
}

.detail-section h2 {
    color: #2c3e50;
    font-size: 1.6em;
    margin-bottom: 20px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.detail-item {
    margin-bottom: 15px;
}

.detail-item label {
    display: block;
    margin-bottom: 5px;
    color: #666;
    font-weight: 500;
}

.detail-item p {
    color: #2c3e50;
    font-size: 1.05em;
}

.detail-item input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.detail-item input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    font-family: inherit;
}

.detail-question {
    margin-bottom: 30px;
}

.detail-question h3 {
    color: #2c3e50;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.detail-answer {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    color: #555;
    line-height: 1.6;
    white-space: pre-wrap;
}

.admin-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.admin-actions .btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    display: inline-block;
}

.admin-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.admin-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

.admin-actions .btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.admin-actions .btn-secondary:hover {
    background: #667eea;
    color: white;
}

@media (max-width: 768px) {
    .detail-card {
        padding: 25px;
    }

    .admin-actions {
        flex-direction: column;
    }

    .admin-actions .btn {
        width: 100%;
    }
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 10px;
    margin-right: 20px;
    padding: 5px;
    background: #f0f0f0;
    border-radius: 20px;
}

.lang-link {
    padding: 6px 12px;
    text-decoration: none;
    color: #666;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9em;
}

.lang-link:hover {
    background: white;
    color: #667eea;
}

.lang-link.active {
    background: #667eea;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .language-switcher {
        order: -1;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 300;
}

.hero .highlight {
    background: rgba(255,255,255,0.2);
    padding: 20px 40px;
    border-radius: 10px;
    display: inline-block;
    margin: 20px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 800px;
    border-left: 4px solid #667eea;
}

.testimonial-quote {
    font-size: 1.3em;
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-author {
    font-weight: bold;
    color: #667eea;
}

.stars {
    color: #ffd700;
    font-size: 1.2em;
    margin-top: 10px;
}

.pain-points {
    background: #fff;
    padding: 60px 20px;
}

.pain-points h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pain-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e9ecef;
}

.pain-item h3 {
    color: #dc3545;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.story-section {
    background: linear-gradient(to bottom, #f8f9fa, #fff);
    padding: 80px 20px;
}

.story-section h2 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2em;
    line-height: 1.8;
}

.story-content p {
    margin-bottom: 25px;
}

.highlight-box {
    background: #667eea;
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    font-size: 1.3em;
    font-weight: 600;
    text-align: center;
}

.three-things {
    background: #fff;
    padding: 80px 20px;
}

.three-things h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
}

.things-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.thing-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thing-number {
    font-size: 3em;
    font-weight: 800;
    opacity: 0.3;
    margin-bottom: 10px;
}

.thing-card h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 20px 50px;
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    margin: 30px 0;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.4);
}

.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
}

.why-works {
    background: #fff;
    padding: 80px 20px;
}

.why-works h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    border-left: 5px solid #667eea;
}

.why-card h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.stats-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item h3 {
    font-size: 3em;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.2em;
    opacity: 0.9;
}

.steps-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.steps-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
}

.step-card {
    background: white;
    padding: 40px;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 8px solid #667eea;
}

.step-number {
    background: #667eea;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.step-bullets {
    margin-top: 20px;
    padding-left: 20px;
}

.step-bullets li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.includes-section {
    background: #fff;
    padding: 80px 20px;
}

.includes-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.include-card {
    background: linear-gradient(to bottom, #f8f9fa, #fff);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: transform 0.3s, box-shadow 0.3s;
}

.include-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.include-card h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.bonus-section {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    padding: 80px 20px;
}

.bonus-section h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 30px;
}

.bonus-intro {
    text-align: center;
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 60px;
}

.bonus-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.2);
}

.bonus-card h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.bonus-value {
    font-size: 1.3em;
    color: #ffd700;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-cta {
    background: #28a745;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.footer-cta h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero .subtitle {
        font-size: 1.2em;
    }

    .story-section h2,
    .three-things h2,
    .why-works h2 {
        font-size: 2em;
    }
}