/* style.css - OneSyn Capital */

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

header {
    background-color: #ffffff;
    padding: 20px 30px;
    border-bottom: 5px solid #e60000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
}

.pics img {
    height: 100px;
    width: auto;
    display: block;
}

.lang-switcher button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-left: 15px;
    color: #666666;
    font-weight: normal;
}

.lang-switcher button.active {
    color: #e60000;
    font-weight: bold;
}

nav a {
    margin-left: 20px;
    color: #333333;
    text-decoration: none;
    font-size: 16px;
}

nav a:hover {
    color: #e60000;
}

.hero {
    background-color: #f8f8f8;
    padding: 100px 20px;
    text-align: center;
}

.hero img {
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 40px;
    color: #000000;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    color: #333333;
    max-width: 900px;
    margin: 0 auto;
}

section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 32px;
    color: #000000;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #e60000;
}

p, ul, li {
    color: #333333;
    font-size: 17px;
}

ul {
    padding-left: 25px;
    list-style: none;
}

ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #e60000;
    border-radius: 50%;
}

footer {
    background-color: #000000;
    padding: 40px 20px;
    text-align: center;
    color: #ffffff;           /* Changed to white as suggested earlier */
    font-size: 14px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .logo img {
        height: 80px;
    }
    .hero {
        padding: 60px 15px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 18px;
    }
}