/* General Corporate Styling */
body {
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Banner Image Placement */
.banner {
    /* Updated filename and background properties */
    background-image: url('/images/support-banner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; /* Ensures the 1219px width is not cropped */
    background-color: #fff;   /* Matches background if the screen is wider than 1219px */
    
    /* Updated to exact height of the new image */
    height: 100px; 
    width: 100%;
    
    /* Flexbox for vertical alignment */
    display: flex;
    align-items: center; 
    justify-content: flex-start;
    
    /* Updated to 142px Left Offset */
    padding-left: 142px; 
    
    /* Ensures padding doesn't push the banner width beyond 100% */
    box-sizing: border-box; 
    
    color: #000000; /* Solid Black Text */
}

.banner h1 {
    margin: 0;
    font-size: 1.8rem; /* Scaled down slightly to fit the 100px height better */
    font-weight: 700;
    text-shadow: none;
}

/* Visual Spacers for Numbered Items */
.step-separator {
    height: 4px;
    width: 60px;
    background-color: #0056b3; 
    margin: 40px 0 20px 0;
    border-radius: 2px;
}

/* Layout Containers */
.container {
    display: flex;
    flex-direction: row; /* Sidebar on right */
    max-width: 1200px;
    margin: 20px auto;
    gap: 40px;
    padding: 0 20px;
}

.content {
    flex: 3;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: fit-content;
}

/* Responsive Sidebar: moves to top/bottom on mobile */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .sidebar {
        order: -1; /* Moves sidebar to top on mobile */
    }
}

/* Content Elements */
.download-buttons img[src*="0.download-windows.png"] {
    width: 275px;
    height: 251px;
}

.download-buttons img[src*="1.download-mac.png"] {
    width: 273px;
    height: 245px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
    flex-wrap: wrap; /* Ensures buttons stack if the screen is too narrow */
}

.instr-img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border: 1px solid #ddd;
    display: block;
}

.note-box {
    background-color: #e7f3fe;
    border-left: 6px solid #2196F3;
    padding: 15px;
    margin: 20px 0;
}

/* Sidebar Links */
.sidebar-links h3 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.sidebar-links ul {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-links a {
    text-decoration: none;
    color: #0056b3;
}

.sidebar-links a:hover {
    text-decoration: underline;
}