
    .magisculpt-container {
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        line-height: 1.6;
        color: #333;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    .hero-section {
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        padding: 60px 40px;
        text-align: center;
        border-radius: 15px;
        margin-bottom: 40px;
    }
    .hero-section h1 {
        color: #2c3e50;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    .highlight-text {
        color: #e67e22;
        font-weight: bold;
    }
    .section-title {
        border-left: 5px solid #3498db;
        padding-left: 15px;
        margin: 40px 0 20px;
        color: #2c3e50;
    }
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }
    .feature-card {
        background: #fff;
        padding: 20px;
        border: 1px solid #eee;
        border-radius: 10px;
        transition: transform 0.3s ease;
    }
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .cta-box {
        background: #2c3e50;
        color: #fff;
        padding: 40px;
        text-align: center;
        border-radius: 15px;
        margin-top: 50px;
    }
    .cta-button {
        display: inline-block;
        background: #e67e22;
        color: #fff;
        padding: 15px 35px;
        text-decoration: none;
        border-radius: 30px;
        font-weight: bold;
        margin-top: 20px;
    }
    .faq-section {
        margin-top: 50px;
        background: #fafafa;
        padding: 30px;
        border-radius: 10px;
    }
    .faq-item {
        margin-bottom: 20px;
    }
    .faq-question {
        font-weight: bold;
        color: #2980b9;
        font-size: 1.1rem;
    }
