/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: white;
    /* Overscroll/Rubber Band Hintergrund für Safari */
    overscroll-behavior: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: white;
    min-height: 100vh;
    /* Overscroll/Rubber Band Hintergrund für Safari */
    overscroll-behavior: none;
    /* Safari-spezifische Eigenschaften für weißen Overscroll-Hintergrund */
    -webkit-overflow-scrolling: touch;
    background-attachment: fixed;
}

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

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e9ecef;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #4CAF50;
    font-size: 24px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #2c3e50;
}

.logo i {
    margin-right: 10px;
    font-size: 28px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    margin-left: 30px;
    font-weight: 500;
}

.nav a:hover {
    color: #4CAF50;
}

.nav .btn-login {
    color: #4CAF50;
    font-weight: 600;
    padding: 8px 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav .btn-login:hover {
    text-decoration: underline;
}

.nav .btn-primary {
    background: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav .btn-primary:hover {
    background: #45a049;
}

.nav #logoutBtn {
    color: #6c757d;
    font-weight: 500;
    padding: 8px 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 6px;
    background: none;
    border: none;
    display: inline-block;
}

.nav #logoutBtn:hover {
    color: #dc3545;
}

.nav #logoutBtn:focus {
    outline: none;
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.15);
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Exam Preview */
.exam-preview {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin: 30px auto; /* Zentriert den gesamten Block */
    max-width: 650px; /* Begrenzt die Breite für bessere Lesbarkeit */
    border: 1px solid #e9ecef; /* Fügt einen sauberen Rahmen hinzu */
}

.exam-preview h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center; /* Zentriert die Überschrift */
}

.exam-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.exam-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    background: #f8f9fa;
    border-left: 4px solid #4CAF50;
    transition: all 0.3s;
}


.exam-item i:first-child {
    margin-right: 12px;
    color: #4CAF50;
    font-size: 16px;
}



.exam-item span {
    flex: 1;
    font-weight: 500;
    color: #2c3e50;
}

.exam-item .price {
    background: #FF9800;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.exam-item:hover {
    background: #f1f1f1;
}

.exam-item .exam-actions {
    margin-top: 7.5px;
    margin-bottom: 7.5px;
    text-align: center;
}

.exam-item .exam-actions .btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
}

.exam-item .status-badge {
    margin-left: auto;
    margin-right: 10px;
    width: fit-content;
    min-width: auto;
}

/* Exam Statistics */
.exam-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.stat-card:hover {
    border-color: #4CAF50;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.stat-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.stat-content p {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e9ecef, transparent);
    margin: 100px 0;
    border-radius: 1px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.user-stats {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.user-avatars {
    display: flex;
    margin-right: 15px;
}

.user-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
    object-fit: cover;
}

.user-avatars img:first-child {
    margin-left: 0;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.hero h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #34495e;
}

.hero h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #7f8c8d;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    display: inline-block;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.btn-primary:hover {
    background: #45a049;
    border-color: #45a049;
}

.btn-secondary {
    background: white;
    color: #4CAF50;
    border-color: #4CAF50;
}

.btn-secondary:hover {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.laptop-mockup {
    width: 100%;
    max-width: 800px;
    background: #2c3e50;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.laptop-screen {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

/* Exam Interface */
.exam-interface {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
}

.exam-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.exam-info h2 {
    margin: 0;
    color: #6c757d;
    font-size: 16px;
    font-weight: 500;
}

.exam-progress {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

#questionCounter {
    color: #6c757d;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.exam-progress .progress-bar {
    width: 120px;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.exam-progress .progress-fill {
    height: 100%;
    background: #6c757d;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.exam-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6c757d;
    font-weight: 500;
    font-size: 14px;
    width: 80px;
    justify-content: center;
}

.exam-timer #timer {
    width: 60px;
    text-align: center;
}

.exam-timer i {
    font-size: 12px;
}

.question-content {
    flex: 1;
    padding: 30px;
}

.question-content p {
    margin: 0 0 25px 0;
    color: #2c3e50;
    font-size: 18px;
    line-height: 1.5;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.option:hover {
    border-color: #4CAF50;
    background: #f8f9fa;
}

.option.selected {
    border-color: #4CAF50;
    background: #e8f5e8;
}

.option-letter {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #6c757d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.option.selected .option-letter {
    background: #4CAF50;
}

.option-text {
    flex: 1;
    font-size: 16px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    min-height: 24px;
}

.exam-footer {
    padding: 20px;
    border-top: 1px solid #e9ecef;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: #4CAF50;
    border-radius: 4px;
    transition: width 0.3s;
}

.exam-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.exam-actions .btn {
    padding: 15px 40px;
    font-size: 14px;
}



.app-result {
    padding: 20px;
    text-align: center;
}

.app-result h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.app-result p {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #ecf0f1;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #4CAF50;
    border-radius: 4px;
}

/* Exam Preview Section */
.exam-preview-section {
    padding: 60px 0;
    background: white;
}

.exam-preview-section .exam-preview {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin: 0 auto;
    max-width: 800px;
    border: 1px solid #e9ecef;
    text-align: left;
}

.exam-preview-section .exam-preview h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
}

.exam-preview-section .exam-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 auto;
}

/* SSCP Information Section */
.sscp-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sscp-info h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.sscp-info > .container > .info-content > .info-text > p {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.info-card i {
    font-size: 40px;
    color: #4CAF50;
    margin-bottom: 20px;
    display: block;
}

.info-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
    color: #555;
    font-size: 16px;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card li strong {
    color: #2c3e50;
}

.free-exam-highlight {
    background: #4CAF50;
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.free-exam-highlight h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.free-exam-highlight p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.free-exam-highlight .btn {
    background: white;
    color: #4CAF50;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
}

.free-exam-highlight .btn:hover {
    background: #f8f9fa;
    color: #4CAF50;
}

/* Influencers Section */
.influencers {
    padding: 80px 0;
    background: white;
}

.influencers h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.influencer-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.influencer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
}

.overlay .influencer-name {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
    color: white;
    display: block;
}

.overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-visual .phone-mockup {
    width: 280px;
    height: 560px;
    background: #2c3e50;
    border-radius: 30px;
    padding: 15px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
}

.features-visual .phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #34495e;
    border-radius: 3px;
}

.features-visual .phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-interface {
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.app-interface .question-counter {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
    text-align: center;
    background: white;
    padding: 12px;
    border-radius: 10px;
    margin: 0 0 20px 0;
    display: block;
}

.app-interface p {
    font-size: 15px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.5;
    background: white;
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
}

.options {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

/* Laptop Mockup Options (Hero Section) */
.exam-interface .option {
    padding: 15px 20px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    color: #2c3e50;
}

.exam-interface .option:hover {
    border-color: #4CAF50;
    background: #f8f9fa;
}

.exam-interface .option.selected {
    border-color: #4CAF50;
    background: #e8f5e8;
}

.exam-interface .option-letter {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #6c757d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.exam-interface .option.selected .option-letter {
    background: #4CAF50;
}

.exam-interface .option-text {
    flex: 1;
    font-size: 16px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    min-height: 24px;
}

/* Phone Mockup Options (Features Section) */
.features-visual .option {
    padding: 15px 20px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #2c3e50;
}

.features-visual .option::before {
    content: attr(data-letter);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #6c757d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.features-visual .option:hover {
    border-color: #4CAF50;
    background: #f8f9fa;
}

.features-visual .option.selected {
    border-color: #4CAF50;
    background: #e8f5e8;
}

.features-visual .option.selected::before {
    background: #4CAF50;
}

.timer {
    text-align: center;
    font-weight: 600;
    color: #e74c3c;
    font-size: 16px;
    background: white;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #e74c3c;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.feature-card .feature-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
    display: block;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

.why-choose h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 40px 20px;
}

.benefit-card i {
    font-size: 48px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.benefit-card .benefit-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    display: block;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Exam Preview Section (replacing Dark Mode) */
.exam-preview-section {
    padding: 80px 0;
}

.exam-preview-section .exam-preview {
    max-width: 800px;
    margin: 0 auto;
}

.exam-preview-header {
    text-align: center;
    margin-bottom: 50px;
}

.exam-preview-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.exam-preview-header p {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.exam-cards {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.exam-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.exam-card.free {
    border-color: #4CAF50;
}

.exam-card.premium {
    border-color: #FFC107;
    background: linear-gradient(135deg, #fff 0%, #fff8e1 100%);
}

.exam-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.exam-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.exam-card.free .exam-icon {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.exam-card.premium .exam-icon {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
}

.exam-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exam-badge.free {
    background: #e8f5e8;
    color: #4CAF50;
}

.exam-badge.premium {
    background: #fff3cd;
    color: #856404;
}

.exam-card-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.exam-card-content p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.exam-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.exam-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #495057;
}

.exam-features i {
    color: #4CAF50;
    font-size: 14px;
    width: 16px;
}

.exam-price {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.price-amount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.price-text {
    font-size: 14px;
    color: #6c757d;
}

.exam-card-footer {
    text-align: center;
}

.exam-card-footer .btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
}

.progress-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat:last-child {
    border-bottom: none;
}

.label {
    font-size: 14px;
    opacity: 0.8;
}

.value {
    font-weight: bold;
    color: #4CAF50;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #1a252f;
    color: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.user-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
}

.username {
    font-weight: 600;
    color: #4CAF50;
}

.testimonial-card p {
    line-height: 1.6;
    font-style: italic;
}

/* Ratings Section */
.ratings {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.ratings h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: #ffd700;
    font-size: 24px;
}

.rating-score {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-left .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-left p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.link-group .link-group-title {
    margin-bottom: 15px;
    color: #4CAF50;
    display: block;
}

.link-group a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 0.8;
}

.link-group a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    color: white;
    font-size: 20px;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.6;
}

/* SSCP Practice Information Section */
.sscp-practice-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.practice-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.practice-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.3;
}

.practice-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 30px;
    text-align: left;
    max-width: 100%;
}

.practice-content p:first-of-type {
    font-size: 20px;
    font-weight: 500;
    color: #2c3e50;
    border-left: 4px solid #4CAF50;
    padding-left: 20px;
    margin-bottom: 35px;
}

.faq-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #e9ecef;
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: white;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.faq-item:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.faq-item h2 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
    padding-left: 15px;
}

    .faq-item p {
        font-size: 16px;
        line-height: 1.6;
        color: #495057;
        padding-left: 15px;
    }

/* Login Section */
.login-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 80px);
}

.login-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.login-header {
    margin-bottom: 40px;
}

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

.login-header p {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.5;
}

.login-form-container,
.register-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.login-form {
    text-align: left;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #4CAF50;
}

.form-group input::placeholder {
    color: #adb5bd;
}

/* Form Group Styles */
.form-group {
    position: relative;
}

/* Password Input Wrapper */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    width: 100%;
    padding-right: 50px;
}

/* New Password Toggle Button */
.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    z-index: 10;
}

.password-toggle-btn:hover {
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.1);
}

.password-toggle-btn:focus {
    outline: none;
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.15);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.password-toggle-btn.active {
    color: #4CAF50;
}

.password-toggle-btn i {
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Adjust input padding for password fields */
.form-group input[type="password"] {
    padding-right: 50px;
}

.form-group input[type="text"][id*="Password"] {
    padding-right: 50px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6c757d;
    cursor: pointer;
}

.checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.forgot-link {
    color: #4CAF50;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.login-form .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
}

.login-divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.login-divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 14px;
}

.register-section {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.register-section p {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.register-section .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
}

/* Trust & Reviews Section */
.trust-reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

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

.trust-header .trust-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    display: block;
}

.trust-header p {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.review-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e9ecef;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-details .user-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    display: block;
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 5px;
}

.stars i {
    color: #FFC107;
    font-size: 14px;
}

.verified-badge {
    background: #e8f5e8;
    color: #4CAF50;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-content {
    margin-bottom: 20px;
}

.review-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
    font-style: italic;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.exam-score {
    background: #4CAF50;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 15px;
}

.review-date {
    font-size: 14px;
    color: #6c757d;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-cta {
    text-align: center;
}

.trust-cta .btn {
    margin-bottom: 15px;
}

.trust-note {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
}

/* Tablet Optimization */
@media (max-width: 1024px) and (min-width: 769px) {
    .exam-header {
        padding: 15px 20px;
    }
    
    .exam-info h2 {
        font-size: 15px;
    }
    
    .exam-timer {
        font-size: 13px;
        width: 75px;
    }
    
    .exam-timer #timer {
        width: 55px;
    }
    
    .exam-progress .progress-bar {
        width: 110px;
    }
    
    .question-content {
        padding: 25px;
    }
    
    .question-content p {
        font-size: 17px;
    }
    
    .option {
        padding: 14px 18px;
    }
    
    .option-text {
        font-size: 16px;
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .hero-content,
    .features-content,
    .dark-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        flex-direction: column;
    }
    
    .laptop-mockup {
        max-width: 100%;
        padding: 15px;
    }
    
    .laptop-screen {
        min-height: 400px;
    }
    
    /* Exam Header Mobile Optimization */
    .exam-header {
        padding: 12px 15px;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .exam-header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .exam-info h2 {
        font-size: 14px;
        text-align: center;
        flex: 1;
        min-width: 0;
    }
    
    .exam-timer {
        font-size: 12px;
        gap: 4px;
        width: 70px;
    }
    
    .exam-timer #timer {
        width: 50px;
    }
    
    .exam-timer i {
        font-size: 10px;
    }
    
    .exam-progress {
        align-items: center;
        gap: 3px;
    }
    
    #questionCounter {
        font-size: 11px;
        text-align: center;
    }
    
    .exam-progress .progress-bar {
        width: 100px;
        height: 3px;
    }
    
    /* Question Content Mobile Optimization */
    .question-content {
        padding: 15px;
    }
    
    .question-content p {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .options {
        gap: 10px;
    }
    
    .option {
        padding: 12px 15px;
        gap: 12px;
        border-width: 1px;
    }
    
    .option-letter {
        width: 28px;
        height: 28px;
        font-size: 12px;
        flex-shrink: 0;
    }
    
    .option-text {
        font-size: 15px;
        line-height: 1.3;
        min-height: 22px;
    }
    
    /* Question Actions Mobile Optimization */
    .question-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 25px;
    }
    
    .question-actions .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
        justify-content: center;
    }
    
    .exam-footer {
        padding: 12px 15px;
    }
    

    
    .exam-preview-section {
        padding: 60px 0;
    }
    
    .exam-preview-header h2 {
        font-size: 32px;
    }
    
    .exam-preview-header p {
        font-size: 16px;
    }
    
    .exam-cards {
        max-width: 100%;
        margin: 0 20px;
    }
    
    .sscp-practice-info {
        padding: 60px 0;
    }
    
    .practice-content {
        padding: 0 15px;
    }
    
    .practice-content h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .practice-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .practice-content p:first-of-type {
        font-size: 18px;
        padding-left: 15px;
        margin-bottom: 30px;
    }
    
    .faq-section {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .faq-section h2 {
        font-size: 26px;
        margin-bottom: 35px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .faq-item {
        padding: 25px;
        border-radius: 15px;
    }
    
    .faq-item h2 {
        font-size: 18px;
        margin-bottom: 15px;
        padding-left: 12px;
    }
    
    .faq-item p {
        padding-left: 12px;
    }
    
    .exam-card {
        padding: 30px;
    }
    
    .exam-card-content h3 {
        font-size: 20px;
    }
    
    .exam-card-footer .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    

    
    .features-visual .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .app-interface {
        padding: 20px;
    }
    
    .app-interface .question-counter {
        font-size: 16px;
        padding: 10px;
    }
    
    .app-interface p {
        font-size: 14px;
        padding: 12px;
    }
    
    .exam-interface .option {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .features-visual .option {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .timer {
        font-size: 14px;
        padding: 10px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .exam-list {
        gap: 8px;
    }
    
    .exam-item {
        padding: 10px 12px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .hero h3 {
        font-size: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .influencer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nav {
        display: none;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 25px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
        position: relative;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #4CAF50;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:hover span {
        background-color: #45a049;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile Menu */
    .mobile-menu {
        display: none;
        visibility: hidden;
        opacity: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #e9ecef;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .mobile-menu.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    /* Ensure mobile menu is visible when active */
    @media (max-width: 768px) {
        .mobile-menu.active {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            transform: translateY(0) !important;
        }
        
        /* Force mobile menu visibility */
        #mobileMenu.active {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
    }
    
    .mobile-nav {
        display: flex;
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .mobile-nav a {
        padding: 12px 0;
        text-decoration: none;
        color: #333;
        font-weight: 500;
        border-bottom: 1px solid #e9ecef;
        transition: all 0.3s ease;
        margin-left: 0;
    }
    
    .mobile-nav a:last-child {
        border-bottom: none;
    }
    
    .mobile-nav a:hover {
        color: #4CAF50;
    }
    
    .mobile-nav .btn {
        text-align: center;
        border-radius: 6px;
        font-weight: 600;
        margin: 8px 0;
        padding: 8px 16px;
        display: inline-block;
    }
    
    .mobile-nav .btn-login {
        background-color: transparent;
        color: #4CAF50;
        border: 2px solid #4CAF50;
        transition: all 0.3s ease;
    }
    
    .mobile-nav .btn-login:hover {
        background-color: #4CAF50;
        color: white;
        text-decoration: none;
    }
    
    .mobile-nav .btn-primary {
        background-color: #4CAF50;
        color: white;
        border: 2px solid #4CAF50;
        transition: all 0.3s ease;
    }
    
    .mobile-nav .btn-primary:hover {
        background-color: #45a049;
        border-color: #45a049;
        color: white;
        text-decoration: none;
    }
    
    /* My Practice Exams link styling */
    .mobile-nav #mobileMyExamsBtn {
        background-color: #4CAF50;
        color: white;
        text-align: center;
        border-radius: 6px;
        font-weight: 600;
        margin: 8px 0;
        padding: 12px 16px;
        display: block;
        border: 2px solid #4CAF50;
        transition: all 0.3s ease;
    }
    
    .mobile-nav #mobileMyExamsBtn:hover {
        background-color: #45a049;
        border-color: #45a049;
        color: white;
        text-decoration: none;
    }
}

/* Desktop: Hide mobile menu elements */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    /* Ensure mobile menu is hidden on desktop even when active */
    .mobile-menu.active {
        display: none !important;
    }
    
    .nav .btn-login,
    .nav .btn-primary {
        margin-left: 15px;
        padding: 6px 12px;
    }
    
    .trust-reviews {
        padding: 60px 0;
    }
    
    .trust-header .trust-title {
        font-size: 28px;
    }
    
    .trust-header p {
        font-size: 16px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .trust-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

/* Extra Small Mobile Optimization */
@media (max-width: 360px) {
    .exam-header {
        padding: 6px 8px;
        gap: 6px;
    }
    
    .exam-header-content {
        flex-direction: column;
        gap: 4px;
        align-items: center;
    }
    
    .exam-info h2 {
        font-size: 12px;
        text-align: center;
    }
    
    .exam-timer {
        font-size: 10px;
        gap: 2px;
        width: 60px;
    }
    
    .exam-timer #timer {
        width: 40px;
    }
    
    .exam-timer i {
        font-size: 8px;
    }
    
    #questionCounter {
        font-size: 9px;
    }
    
    .exam-progress .progress-bar {
        width: 70px;
        height: 2px;
    }
    
    .question-content {
        padding: 10px;
    }
    
    .question-content p {
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .options {
        gap: 6px;
    }
    
    .option {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .option-letter {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    
    .option-text {
        font-size: 13px;
        line-height: 1.1;
        min-height: 18px;
    }
    
    .question-actions {
        gap: 6px;
        margin-top: 15px;
    }
    
    .question-actions .btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .exam-footer {
        padding: 6px 8px;
    }
}

/* Mobile Landscape Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .exam-header {
        padding: 8px 15px;
        flex-direction: row;
        gap: 8px;
    }
    
    .exam-header-content {
        flex-direction: row;
        gap: 6px;
        align-items: center;
    }
    
    .exam-info h2 {
        font-size: 13px;
        text-align: left;
        flex: none;
    }
    
    .exam-timer {
        font-size: 11px;
        gap: 3px;
        width: 65px;
    }
    
    .exam-timer #timer {
        width: 45px;
    }
    
    .exam-progress {
        align-items: flex-end;
    }
    
    .exam-progress .progress-bar {
        width: 90px;
    }
    
    .question-content {
        padding: 12px 15px;
    }
    
    .question-content p {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .options {
        gap: 8px;
    }
    
    .option {
        padding: 10px 12px;
    }
    
    .question-actions {
        flex-direction: row;
        gap: 10px;
        margin-top: 20px;
    }
    
    .question-actions .btn {
        width: auto;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .influencer-grid {
        grid-template-columns: 1fr;
    }
    
    .laptop-mockup {
        padding: 10px;
    }
    
    .laptop-screen {
        min-height: 350px;
    }
    
    /* Small Mobile Exam Header */
    .exam-header {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .exam-header-content {
        gap: 6px;
    }
    
    .exam-info h2 {
        font-size: 13px;
    }
    
    .exam-timer {
        font-size: 11px;
        gap: 3px;
        width: 65px;
    }
    
    .exam-timer #timer {
        width: 45px;
    }
    
    .exam-timer i {
        font-size: 9px;
    }
    
    #questionCounter {
        font-size: 10px;
    }
    
    .exam-progress .progress-bar {
        width: 80px;
        height: 2px;
    }
    
    /* Small Mobile Question Content */
    .question-content {
        padding: 12px;
    }
    
    .question-content p {
        font-size: 15px;
        line-height: 1.3;
        margin-bottom: 18px;
    }
    
    .options {
        gap: 8px;
    }
    
    .option {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .option-letter {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    
    .option-text {
        font-size: 14px;
        line-height: 1.2;
        min-height: 20px;
    }
    
    .question-actions {
        gap: 8px;
        margin-top: 20px;
    }
    
    .question-actions .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .exam-footer {
        padding: 8px 10px;
    }
    
    .exam-preview-section {
        padding: 40px 0;
    }
    
    .exam-preview-header h2 {
        font-size: 28px;
    }
    
    .exam-cards {
        margin: 0 15px;
    }
    
    .exam-card {
        padding: 25px;
    }
    
    .exam-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .exam-card-content h3 {
        font-size: 18px;
    }
    
    .exam-features li {
        font-size: 14px;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .sscp-practice-info {
        padding: 40px 0;
    }
    
    .practice-content {
        padding: 0 10px;
    }
    
    .practice-content h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .practice-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .practice-content p:first-of-type {
        font-size: 16px;
        padding-left: 12px;
        margin-bottom: 25px;
    }
    
    .faq-section {
        margin-top: 50px;
        padding-top: 30px;
    }
    
    .faq-section h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .faq-grid {
        gap: 20px;
        padding: 0 10px;
    }
    
    .faq-item {
        padding: 20px;
        border-radius: 12px;
    }
    
    .faq-item h2 {
        font-size: 16px;
        margin-bottom: 12px;
        padding-left: 10px;
    }
    
    .faq-item p {
        font-size: 14px;
        padding-left: 10px;
    }
    
    .trust-reviews {
        padding: 40px 0;
    }
    
    .trust-header .trust-title {
        font-size: 24px;
    }
    
    .trust-header p {
        font-size: 15px;
    }
    
    .reviews-grid {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .user-avatar {
        width: 40px;
        height: 40px;
    }
    
    .user-details .user-name {
        font-size: 16px;
    }
    
    .review-content p {
        font-size: 14px;
    }
    
    .trust-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .login-content {
        max-width: 100%;
    }
    
    .login-form-container,
    .register-form-container {
        padding: 30px 20px;
    }
    
    .login-header h1 {
        font-size: 28px;
    }
    
    .login-header p {
        font-size: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    /* Password toggle responsive */
    .password-toggle-btn {
        right: 8px;
        width: 28px;
        height: 28px;
    }
    
    .password-toggle-btn i {
        font-size: 14px;
    }
    
    .form-group input[type="password"],
    .form-group input[type="text"][id*="Password"] {
        padding-right: 40px;
    }
    
    /* Register section responsive */
    .register-section {
        margin-top: 25px;
        padding-top: 20px;
    }
    
    .register-section p {
        margin-bottom: 15px;
        font-size: 13px;
    }
    
    .register-section .btn {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .exams-section {
        padding: 100px 20px 60px;
    }
    
    .exams-header h1 {
        font-size: 36px;
    }
    
    .exams-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .exam-card {
        padding: 30px 20px;
    }
    
    .recent-activity {
        padding: 30px 20px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .exam-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .section-divider {
        margin: 60px 0;
    }
}

@media (max-width: 480px) {
    .exam-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .exam-status {
        text-align: center;
    }
    
    .exam-details {
        grid-template-columns: 1fr;
    }
    
    .exam-stats {
        grid-template-columns: 1fr;
    }
    
    .section-divider {
        margin: 40px 0;
    }
}

/* Exams Section Styles */
.exams-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

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

.exams-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.exams-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Exams Grid */
.exams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.exam-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.exam-card:hover {
    border-color: #4CAF50;
}

.exam-card.free {
    border-left: 5px solid #4CAF50;
}

.exam-card.premium {
    border-left: 5px solid #FF9800;
}

.exam-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent #FF9800 transparent transparent;
}

/* Exam Header */
.exam-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.exam-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    color: white;
}

.exam-card.free .exam-icon {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.exam-card.premium .exam-icon {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.exam-info {
    flex: 1;
}

.exam-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.exam-type {
    background: #f8f9fa;
    color: #666;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.exam-status {
    text-align: right;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.available {
    background: #ffffff;
    color: #4CAF50;
}

.status-badge.locked {
    background: white;
    color: #6c757d;
    border: 1px solid #e9ecef;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.status-badge.locked i {
    font-size: 10px;
    color: #6c757d;
}

.status-badge.available {
    background: #ffffff;
    color: #4CAF50;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.status-badge.available i {
    font-size: 10px;
    color: #4CAF50;
}

.status-badge.purchased {
    background: #ffffff;
    color: #000000;
}

/* Exam Details */
.exam-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.detail-item i {
    color: #4CAF50;
    font-size: 16px;
    width: 20px;
}

/* Exam Description */
.exam-description {
    margin-bottom: 30px;
}

.exam-description p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Exam Actions */
.exam-actions {
    text-align: center;
}

/* Recent Activity */
.recent-activity {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e9ecef;
}

.recent-activity h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.activity-item:hover {
    background: #e9ecef;
}

.activity-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.activity-content p {
    margin: 0;
    font-weight: 500;
    color: #2c3e50;
}

.activity-time {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    display: block;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background-color: white;
    margin: 20px auto;
    padding: 0;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
    position: relative;
}

/* Payment Modal Specific Styles */
.payment-modal {
    max-width: 600px;
}

.payment-modal .modal-header {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border-radius: 10px 10px 0 0;
    padding: 25px 30px;
}

.payment-modal .modal-header h3 {
    color: white;
    margin: 0;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-modal .modal-header .close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.payment-modal .modal-header .close:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 24px;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #666;
}

.modal-body {
    padding: 30px;
}

/* Payment Summary */
.payment-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px solid #e9ecef;
    border-left: 4px solid #4CAF50;
}

.payment-summary h4 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-summary h4 i {
    color: #4CAF50;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.payment-item:last-of-type {
    border-bottom: none;
}

.payment-item .price {
    font-weight: 600;
    color: #2c3e50;
}

.payment-item .duration {
    color: #28a745;
    font-weight: 500;
}

.payment-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
}

/* Payment Form */
.payment-form {
    margin-bottom: 30px;
}

.payment-form h4 {
    margin: 0 0 25px 0;
    color: #2c3e50;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-form h4 i {
    color: #4CAF50;
}

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

.payment-form label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-form label i {
    color: #4CAF50;
    width: 16px;
}

.payment-form input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #fff;
}

.payment-form input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    transform: translateY(-1px);
}

.payment-form input::placeholder {
    color: #adb5bd;
}

/* Input Wrapper for Card Number */
.input-wrapper {
    position: relative;
}

.card-icons {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
}

.card-icons i {
    font-size: 20px;
    color: #adb5bd;
    transition: color 0.3s ease;
}

.card-icons i:hover {
    color: #4CAF50;
}

.payment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.payment-form input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
}

.payment-form input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Payment Button */
.payment-btn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    background: #4CAF50;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.payment-btn:hover {
    background: #45a049;
}

.payment-btn:active {
    transform: translateY(0);
}

.payment-btn:disabled,
.payment-btn.btn-disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    background: #ccc !important;
    color: #666 !important;
    border-color: #ccc !important;
}

.payment-btn.btn-disabled:hover {
    background: #ccc !important;
    color: #666 !important;
    border-color: #ccc !important;
    transform: none;
}

.btn-loading {
    display: none;
}

.payment-btn.loading .btn-text {
    display: none;
}

.payment-btn.loading .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Security Section */
.payment-security {
    text-align: center;
    margin-top: 25px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border: 1px solid #dee2e6;
    position: relative;
    overflow: hidden;
}

.payment-security::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
}

.security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.security-badges i {
    font-size: 18px;
    color: #4CAF50;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.1);
}

.security-badges i:hover {
    transform: translateY(-2px);
    background: rgba(76, 175, 80, 0.2);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.2);
}

.payment-security span {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Test Card Info */


/* Responsive Payment Modal */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
    }
    
    .payment-modal {
        max-width: 100%;
        margin: 10px;
    }
    
    .payment-modal .modal-header {
        padding: 20px;
    }
    
    .payment-modal .modal-header h3 {
        font-size: 20px;
    }
    
    .payment-summary {
        padding: 20px;
    }
    
    .payment-form {
        margin-bottom: 20px;
    }
    
    .payment-form input {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .payment-btn {
        padding: 15px;
        font-size: 16px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-row .form-group {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .card-icons {
        right: 12px;
    }
    
    .card-icons i {
        font-size: 16px;
    }
    
    .security-badges {
        gap: 10px;
    }
    
    .security-badges i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .modal {
        padding: 5px;
    }
    
    .payment-modal {
        margin: 5px;
        border-radius: 15px;
    }
    
    .payment-modal .modal-header {
        padding: 15px;
        border-radius: 15px 15px 0 0;
    }
    
    .payment-modal .modal-header h3 {
        font-size: 18px;
    }
    
    .payment-summary {
        padding: 15px;
    }
    
    .payment-form {
        margin-bottom: 15px;
    }
    
    .payment-form h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .payment-form input {
        padding: 10px;
        font-size: 16px;
    }
    
    .payment-btn {
        padding: 12px;
        font-size: 16px;
        margin: 20px 0;
    }
    
    .payment-security {
        padding: 15px;
        margin-top: 20px;
    }
    
    .security-badges {
        gap: 15px;
        margin-bottom: 8px;
    }
    
    .security-badges i {
        font-size: 16px;
        padding: 6px;
    }
    

}

@media (max-width: 360px) {
    .payment-modal .modal-header {
        padding: 12px;
    }
    
    .payment-modal .modal-header h3 {
        font-size: 16px;
    }
    
    .payment-summary {
        padding: 12px;
    }
    
    .payment-form {
        margin-bottom: 12px;
    }
    
    .payment-form input {
        padding: 8px;
    }
    
    .payment-btn {
        padding: 10px;
        font-size: 14px;
    }
    
    .payment-security {
        padding: 12px;
    }
    
    .payment-security span {
        font-size: 12px;
    }
    
    .security-badges i {
        font-size: 14px;
        padding: 5px;
    }
} 

/* Success Notification */
.success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInRight 0.3s ease;
}

.success-notification i {
    font-size: 18px;
    color: #fff;
}

.success-notification span {
    font-weight: 500;
}

/* Error Notification */
.error-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ef4444;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInRight 0.3s ease;
}

.error-notification i {
    font-size: 18px;
    color: #fff;
}

.error-notification span {
    font-weight: 500;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Payment Feedback Messages */
.payment-error,
.payment-success {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    animation: slideInUp 0.3s ease;
}

.payment-error {
    background-color: #fee;
    color: #c53030;
    border: 1px solid #fed7d7;
}

.payment-error i {
    color: #c53030;
    font-size: 16px;
}

.payment-success {
    background-color: #f0fff4;
    color: #2f855a;
    border: 1px solid #c6f6d5;
}

.payment-success i {
    color: #2f855a;
    font-size: 16px;
}

/* Stripe Elements Styling */
.stripe-element {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: white;
    transition: border-color 0.3s ease;
}

.stripe-element:focus-within {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.stripe-element.StripeElement--invalid {
    border-color: #e74c3c;
}

#card-errors {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 8px;
    display: none;
}

/* Premium Status Badge */
.status-badge.available {
    background-color: #4CAF50;
    color: white;
}

.status-badge.available i {
    color: white;
}

@keyframes slideInUp {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Error Message Styles */
.form-group.error {
    border-color: #e74c3c;
}

.form-group.error input {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.error-message::before {
    content: "⚠";
    font-size: 12px;
}