.elementor-56 .elementor-element.elementor-element-378f835{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-56 .elementor-element.elementor-element-f42d76d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-56 .elementor-element.elementor-element-50be0c4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-56 .elementor-element.elementor-element-50be0c4:not(.elementor-motion-effects-element-type-background), .elementor-56 .elementor-element.elementor-element-50be0c4 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#2F3E4B;}.elementor-56 .elementor-element.elementor-element-7556bf5{--spacer-size:100px;}.elementor-56 .elementor-element.elementor-element-ed3b8e8.elementor-element{--align-self:center;}.elementor-56 .elementor-element.elementor-element-1e4455f{--spacer-size:210px;}@media(min-width:768px){.elementor-56 .elementor-element.elementor-element-f42d76d{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-b5559ff *//* --- General Styling --- */
.script-landing-page {
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    line-height: 1.7;
    background-color: #fff;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), url('https://filehos.com/wp-content/uploads/2025/10/back.webp?text=Background');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero-section h1 {
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section .subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

/* --- Buttons --- */
.btn {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.btn-primary {
    background-color: #fb983a; /* Primary color from README */
    color: #fff;
    box-shadow: 0 4px 15px rgba(251, 152, 58, 0.3);
}

.btn-primary:hover {
    background-color: #e08125;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(251, 152, 58, 0.4);
}

/* --- Section Styling & Headings --- */
.script-landing-page section {
    padding: 80px 20px;
}

.script-landing-page h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 50px;
}

/* --- Core Features Section --- */
.core-features {
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 30px;
    background-color: #f8f9fa;
    flex-wrap: wrap;
}

.feature-box {
    max-width: 350px;
}

.feature-box i {
    font-size: 3em;
    color: #fb983a;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* --- Tools Showcase Section --- */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tool-card i {
    font-size: 2.5em;
    color: #fb983a;
    margin-bottom: 15px;
}

.tool-card h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

/* --- CMS and Admin Panel Section --- */
.cms-admin-section {
    background-color: #f8f9fa;
}

.cms-admin-content {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cms-column, .admin-column {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.cms-column h3, .admin-column h3 {
    font-size: 1.6em;
    margin-bottom: 20px;
    border-bottom: 2px solid #fb983a;
    padding-bottom: 10px;
}

.cms-column ul, .admin-column ul {
    list-style: none;
    padding: 0;
}

.cms-column ul li, .admin-column ul li {
    padding: 8px 0;
    font-size: 1.05em;
}

.cms-column ul li i, .admin-column ul li i {
    color: #28a745;
    margin-right: 10px;
}

/* --- Final CTA Section --- */
.final-cta {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
}

.final-cta p {
    max-width: 700px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .script-landing-page h1 {
        font-size: 2.5em;
    }
    .script-landing-page h2 {
        font-size: 2em;
    }
}

/* --- Add this to your existing CSS --- */

/* Button Container for alignment */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Adjusts space between buttons */
    flex-wrap: wrap; /* Allows buttons to stack on smaller screens */
}

/* Secondary "Demo" Button Style */
.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #2c3e50; /* Dark text color on hover */
    transform: translateY(-3px);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-457a30c *//* --- Instructions Section Wrapper --- */
.instructions-wrapper {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa; /* Light grey background */
    padding: 60px 20px;
    color: #333;
}

.instructions-wrapper h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50; /* Dark blue-grey */
}

/* --- Grid for the Cards --- */
.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Individual Instruction Card Styling --- */
.instruction-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #007bff; /* Accent color */
}

.instruction-card h3 {
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: #2c3e50;
}

.instruction-card h3 .icon {
    font-size: 1.2em;
    margin-right: 12px;
}

.instruction-card h4 {
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* --- List Styling --- */
.instruction-card p {
    margin-bottom: 15px;
}

.download-steps {
    padding-left: 20px;
    line-height: 1.8;
}

.download-steps li {
    margin-bottom: 8px;
}

.included-files,
.requirements-list {
    list-style: none;
    padding: 0;
}

.included-files li,
.requirements-list li {
    padding: 5px 0;
    line-height: 1.6;
}

.included-files .check {
    color: #28a745; /* Green checkmark */
    font-weight: bold;
    margin-right: 10px;
}/* End custom CSS */