/* Dashboard Preview Section Styles */
.dashboard-preview {
    background-color: #f9f9f9;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.dashboard-preview .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.preview-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.preview-text {
    flex: 1;
}

.preview-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.preview-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.preview-text ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    font-size: 16px;
    line-height: 1.6;
}

.preview-text ul li i {
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 20px;
}

.preview-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.preview-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.preview-image:hover img {
    transform: scale(1.03);
}

/* Instant Access Section Styles */
.instant-access {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    position: relative;
}

.instant-access::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--primary-color);
    transform: skewY(-3deg);
    z-index: 1;
}

.access-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.access-text {
    flex: 1;
}

.access-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.access-text p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.access-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.access-text ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.access-text ul li strong {
    color: var(--secondary-color);
}

.access-text ul li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 24px;
    line-height: 1;
}

.access-image {
    flex: 1;
    text-align: center;
}

.access-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Platform Features Styles */
.platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.platform-feature {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.platform-feature i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.platform-feature h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.platform-feature p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

/* FAQ Section Styles */
.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    content: '-';
    transform: rotate(0deg);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq-item.active p {
    max-height: 500px;
    opacity: 1;
}

/* Get Started Section Styles */
.get-started {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a8f 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.get-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png') repeat;
    opacity: 0.05;
    z-index: 1;
}

.get-started-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.get-started h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.get-started p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .preview-content,
    .access-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .preview-text,
    .access-text {
        order: 2;
    }
    
    .preview-image,
    .access-image {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .platform-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-preview,
    .instant-access {
        padding: 60px 0;
    }
    
    .get-started {
        padding: 80px 0;
    }
    
    .get-started h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .preview-text ul li,
    .access-text ul li {
        font-size: 15px;
    }
    
    .faq-item h3 {
        font-size: 18px;
    }
    
    .get-started h2 {
        font-size: 26px;
    }
    
    .get-started p {
        font-size: 16px;
    }
}