body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
}

header {
    background: #1a1a1a; /* Darker gray for header */
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid #333; /* Subtle border */
}

header h1 {
    margin: 0;
    color: #ff4136; /* RED Accent color for title */
}

nav ul {
    padding: 0;
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    color: #e0e0e0; /* Lighter gray for nav links */
    text-decoration: none;
}

nav a:hover {
    color: #ff4136; /* RED Accent color on hover */
}

main {
    padding: 20px;
    background-color: #000000; /* Black background for main content */
    /* color: #ffffff; Already set in body, but can be reinforced */
}

footer {
    text-align: center;
    padding: 20px;
    background: #1a1a1a; /* Darker gray for footer */
    color: #fff;
    margin-top: 20px;
    border-top: 1px solid #333; /* Subtle border */
}

footer a {
    color: #e0e0e0; /* Lighter gray for footer links */
    text-decoration: none;
}

/* Basic Elementor styles to avoid complete chaos */
.elementor-section {
    margin-bottom: 20px;
}

.elementor-widget-wrap {
    padding: 10px; /* Retained for Elementor content if any, but new sections use .section */
}

/* Removing Elementor specific styles as we are moving away from it */
/* .elementor-heading-title, .elementor-widget-text-editor p, .elementor-button-wrapper, .elementor-button can be removed or repurposed if classes are reused */

.section { /* Added from inline styles, now centralized */
    padding: 60px 20px; /* Increased padding */
    border-bottom: 1px solid #333;
    text-align: center; /* Center section content by default */
}
.section:last-child {
    border-bottom: none;
}
.section h2 {
    font-size: 2.4em; /* Slightly larger section titles */
    margin-bottom: 40px; /* More space below title */
    color: #ff4136;
}
.section p {
    max-width: 800px; /* Limit paragraph width for readability */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px; /* Space between paragraphs */
    line-height: 1.7; /* Improved line height */
}

.features-grid { /* Added from inline styles */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; /* Increased gap */
    margin-top: 40px; /* More space above grid */
}

.feature-item { /* Enhanced card styling */
    background-color: #1c1c1c;
    padding: 30px 25px; /* Increased padding */
    border-radius: 8px;
    border: 1px solid #333;
    color: #e0e0e0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover effect */
    display: flex; /* For better internal alignment */
    flex-direction: column;
    justify-content: space-between; /* Distribute space */
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(255, 65, 54, 0.1); /* Subtle red glow */
}

.feature-item h3 {
    color: #ff4136;
    margin-top: 0; /* Remove default margin */
    margin-bottom: 15px; /* Space below H3 */
    font-size: 1.6em;
}
.feature-item p {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 0; /* Paragraphs in items should not have large bottom margins */
}

.feature-item img.icon { /* Class for feature icons */
    width: 50px; /* Adjusted size */
    height: 50px;
    margin-bottom: 20px; /* More space below icon */
    align-self: center; /* Center icon if flex is used */
}
.feature-item img.themed-image { /* Class for larger themed images in cards */
    width:100%;
    height:auto;
    max-width:200px;
    border-radius: 5px;
    margin-bottom:15px;
    align-self: center;
}


.cta-button { /* Centralized from inline */
    display: inline-block;
    padding: 12px 30px; /* Increased padding */
    margin: 10px 5px;
    background-color: #cc0000;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}
.cta-button:hover {
    background-color: #a30000;
}

.cta-button.primary-cta {
    background-color: #007bff; /* A distinct blue */
    font-size: 1.2em; /* Larger text */
    padding: 15px 40px; /* More padding */
    border-radius: 8px; /* Slightly more rounded */
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4); /* Blue glow */
}

.cta-button.primary-cta:hover {
    background-color: #0056b3; /* Darker blue on hover */
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

.cta-button.secondary { /* Example for a secondary CTA style */
    background-color: transparent;
    border: 2px solid #cc0000;
    color: #cc0000 !important;
}
.cta-button.secondary:hover {
    background-color: #cc0000;
    color: white !important;
}


img { /* Global img rule */
    max-width: 100%;
    height: auto;
    display: block; /* Prevents extra space below images */
}

/* Social Media Feed Section Styles */
.social-media-feed-section {
    background-color: #0a0a0a; /* Slightly different background for contrast */
    padding: 60px 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.social-media-feed-section h2 {
    color: #ff4136; /* Red accent for title */
    margin-bottom: 20px;
}

.social-media-feed-section p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

.social-feed-container {
    background-color: #1c1c1c;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
    min-height: 400px; /* Ensure some height for the widget */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #e0e0e0;
    font-size: 1.1em;
    line-height: 1.5;
}

.social-feed-container pre {
    background-color: #000;
    color: #0f0;
    padding: 15px;
    border-radius: 5px;
    text-align: left;
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
    font-size: 0.9em;
}