#contents h1 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

#contents h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 30px 0 20px 0;
    border-left: 4px solid #596EFF;
    padding-left: 15px;
}

#contents h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin: 25px 0 15px 0;
}

#contents p {
    font-size: 1rem;
    text-align: justify;
    margin-bottom: 20px;
    line-height: 1.7;
}

#contents .highlight {
    background: linear-gradient(135deg, #596EFF15, #C966FF15);
    border-left: 4px solid #596EFF;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
}

#contents .steps {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    margin: 25px 0;
}

#contents .steps ol {
    margin: 15px 0;
    padding-left: 20px;
}

#contents .steps li {
    margin-bottom: 10px;
    padding-left: 5px;
}

#contents .cta-box {
    background: linear-gradient(135deg, #596EFF, #C966FF);
    color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin: 30px 0;
}

#contents .cta-preview {
    margin: 20px 0;
}

#contents .cta-preview img {
    max-width: 300px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#contents .cta-buttons {
    margin: 20px 0;
}

#contents .cta-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    background: rgba(255,255,255,0.2);
    padding: 12px 25px;
    border-radius: 25px;
    display: inline-block;
    margin: 8px;
    transition: background 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

#contents .cta-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

#contents .cta-link.primary {
    background: rgba(255,255,255,0.9);
    color: #596EFF;
    font-size: 1.1rem;
}

#contents .cta-link.primary:hover {
    background: #fff;
}

#contents .cta-secondary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

#contents .faq {
    margin-top: 40px;
}

#contents .faq-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

#contents .faq-question {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 8px;
}

#contents .faq-answer {
    color: #555;
}

#contents .hashtag {
    background: linear-gradient(135deg, #596EFF20, #C966FF20);
    color: #596EFF;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

#contents strong {
    color: #2c3e50;
}

#contents a {
    color: #596EFF;
    text-decoration: none;
}

#contents a:hover {
    color: #C966FF;
    text-decoration: underline;
}

@media (max-width: 768px) {
    #contents .container {
        padding: 20px;
        margin: 10px;
    }
    
    #contents h1 {
        font-size: 1.6rem;
    }
    
    #contents h2 {
        font-size: 1.3rem;
    }
    
    #contents p {
        font-size: 0.95rem;
    }
}