/* ===== General Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fb;
    color: #1e293b;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #0073e6;
    transition: all 0.3s ease;
}

a:hover {
    color: #005bb5;
}

/* ===== Container ===== */
#main_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ===== Header ===== */
#header {
    text-align: center;
    padding: 20px 0;
}

.logo img {
    width: auto;
    max-width: 500px;
    height: auto;
}

/* ===== Top Horizontal Menu ===== */
.menu {
    margin-top: 15px;
}

.menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.menu ul li a {
    display: inline-block;
    padding: 10px 18px;
    background-color: #0073e6;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu ul li a:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
}

/* ===== Main Content ===== */
.center_content {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    padding: 30px;
    margin: 30px 0;
}

.center_left { flex: 1 1 650px; }
.center_right { width: 280px; flex-shrink: 0; }

/* ===== Section Cards ===== */
.cards_container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.software_card, .feature_card, .screenshot_card, .testimonial_card, .faq_card, .cta_card {
    background: #fefefe;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Software Logo */
.software_logo {
    max-width: 120px;
    margin-bottom: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #0073e6;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 10px 18px;
    background-color: transparent;
    color: #0073e6;
    font-weight: 600;
    border: 2px solid #0073e6;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #0073e6;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== Screenshot Slider ===== */
#slider {
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.slider_wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slider_img {
    min-width: 100%;
    object-fit: cover;
}

/* ===== Right Column ===== */
.center_right .software_box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
}

.center_right .software_box img {
    max-width: 100%;
    height: auto;
}

/* ===== Footer ===== */
#footer {
    background-color: #ffffff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
    padding: 30px 20px;
    font-size: 14px;
    color: #1e293b;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.left_footer ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.left_footer ul li a {
    display: inline-block;
    padding: 10px 18px;
    background-color: #0073e6;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.left_footer ul li a:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media screen and (max-width: 1024px) {
    .center_content { flex-direction: column; }
    .center_right { width: 100%; }
    .menu ul { flex-direction: column; gap: 10px; align-items: center; }
    #footer { flex-direction: column; text-align: center; }
    .left_footer ul { flex-direction: column; gap: 10px; align-items: center; }
}
