.ai-prompting-body *,
.ai-prompting-body *::before,
.ai-prompting-body *::after {
    box-sizing: border-box;
}

.ai-prompting-body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fafafa;
    color: #222;
    margin: 0;
    padding: 0;
    padding-bottom: 40px;
}

.ai-prompting-header {
    background: linear-gradient(135deg, #4a90e2, #9013fe);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.ai-prompting-title {
    margin: 0;
    font-size: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.ai-prompting-btn-home {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    margin: 30px auto;
    background: #fff;
    color: #4a90e2;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
    max-width: 150px;
}

.ai-prompting-btn-home:hover {
    background: #4a90e2;
    color: #fff;
}

.ai-prompting-main {
    padding: 20px;
    max-width: 900px;
    margin: auto;
}

.ai-prompting-article {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ai-prompting-subtitle {
    margin-top: 30px;
    font-size: 1.6rem;
    color: #333;
    border-left: 4px solid #4a90e2;
    padding-left: 10px;
    margin-bottom: 10px;
}

.ai-prompting-subtitle-small {
    margin-top: 20px;
    font-size: 1.3rem;
    color: #555;
}

.ai-prompting-text {
    margin: 15px 0;
    font-size: 1rem;
}

.ai-prompting-list {
    margin: 15px 0 20px 20px;
    padding-left: 0;
    list-style-position: inside;
}

ul.ai-prompting-list {
    list-style-type: square;
}

.ai-prompting-list li {
    margin-bottom: 12px;
    padding-left: 10px;
}

blockquote.ai-prompting-example {
    margin: 20px 0;
    padding: 15px 20px;
    background-color: #e6f0ff;
    border-left: 4px solid #4a90e2;
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: #1a1a1a;
}

.ai-prompting-code {
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-left: 5px solid #9013fe;
    padding: 15px;
    border-radius: 6px;
    overflow-x: auto;
    font-size: 0.95rem;
    font-family: "Courier New", monospace;
    white-space: pre-wrap;
}

@media (max-width: 420px) {
    .ai-prompting-header {
        padding: 15px;
    }

    .ai-prompting-title {
        font-size: 1.5rem;
    }

    .ai-prompting-btn-home {
        margin-top: 20px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .ai-prompting-main {
        padding: 10px;
    }

    .ai-prompting-article {
        padding: 15px;
    }

    .ai-prompting-subtitle {
        font-size: 1.3rem;
    }

    .ai-prompting-subtitle-small {
        font-size: 1.1rem;
    }

    .ai-prompting-text {
        font-size: 0.95rem;
    }

    .ai-prompting-code {
        font-size: 0.85rem;
        padding: 10px;
    }
}

.ai-project-cta-container {
    text-align: center;
    max-width: 900px;
    margin: 40px auto 30px;
    padding: 30px;
    background-color: #c7d7f8;
    border-radius: 12px;
    border: 1px solid #d0e0ff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ai-project-cta-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.4;
    font-weight: 500;
}

.ai-project-cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;

    width: fit-content;

    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: bold;

    color: #0a0a0a;
    background: #98b3e9;

    border-radius: 8px;
    text-decoration: none;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;

    margin: 0 auto;
}

.ai-project-cta-btn:hover {
    background: #4caf50;
    color: #fff;
    border-color: #4caf50;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.6);
    transform: translateY(-1px);
}

@media (max-width: 420px) {
    .ai-project-cta-container {
        padding: 20px 15px;
    }

    .ai-project-cta-text {
        font-size: 1.0rem;
    }

    .ai-project-cta-btn {
        width: 100%;
        min-width: auto;
        padding: 10px 15px;
        font-size: 1rem;
    }
}