:root {
    --primary-color: #126ca6;
    --secondary-color: #fdfdfd;
    --text-white: #fff;
    --text-color: #111;
    --text-black: #000;
    --bg-color: #f4f4f4;
    --bg-blue: #1d84c7;
    --font-family: 'Arial', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

p {
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: normal;
    margin-bottom: 1rem;
    color: var(--text-white);
}

h3, h4 {
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
    color: var(--primary-color);

}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.site-header {
    background: var(--bg-blue);
    color: var(--text-white);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-white);
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    color: var(--text-white);
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--text-white);
}

.menu-toggle {
    display: none; 
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
}

.mb-1 {
    margin-bottom: 10px;
}

.post-container ul {
    list-style-type: disc;
    margin-bottom: 1rem;
}

.post-container li {
    margin-left: 2rem;
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin-top: 1rem;
    }

    .main-nav .nav-links.open {
        display: flex;
    }

    .main-nav a {
        padding: 0.5rem 0;
        text-align: left;
    }
    
    .menu-toggle {
        display: block;
        align-self: flex-end;
    }
}

.hero-section {
    background: var(--primary-color);
    color: var(--text-white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: normal;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.hero-content p {
    font-size: 1.2rem;
    line-height: normal;
    max-width: 1100px;
    margin: 0 auto 1.5rem;
}

.btn {
    background: var(--text-white);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #e7e7e7;
}

.btn-si {
    background: var(--text-white);
    color: var(--primary-color) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-si:hover {
    background: var(--text-white);
}

.btn-su {
    border: 1px solid #fff;
    background: #ffffff00;
    color: var(--text-white);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-su:hover {
    background: var(--text-white);
    color: var(--primary-color) !important; 
}

.features-section {
    padding: 4rem 2rem;
    text-align: justify;
    background-color: var(--text-white);
}

.features-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.feature-container {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    height: fit-content;
}

.feature-item {
    background: var(--text-white);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding-bottom: 2rem;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
    margin-bottom: 1rem;
}

.img-feat {
    width: 100%;
}

.plr-15 {
    padding: 0 15px;
    text-align: justify;
    margin-bottom: 2rem;
}

.content-wrapper {
    display: flex;
    gap: 2rem;
}

.feature-container {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    flex: 3;
}

.post-container {
    display: block;
    flex: 3;
}

ol {
    margin-left: 15px;
}

.sidebar {
    flex: 1;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    height: fit-content;
    position: sticky;
    top: 100px;
    z-index: 5;
}

.sidebar h3 {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.sidebar ul {
    margin-bottom: 1.5rem;
}

.sidebar li {
    margin-bottom: 0.5rem;
}

.site-footer {
    background: var(--bg-blue);
    color: var(--text-white);
    text-align: center;
    padding: 1.5rem 0;
}

	.table-container {
            width: 100%;
            max-width: 64rem;
            background-color: #ffffff;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .table-content {
            overflow-x: auto;
        }

        table {
            width: 100%;
            text-align: left;
            color: #4b5563;
            border-collapse: collapse;
        }

        thead {
            background-color: #f9fafb;
        }

        th {
            padding: 1rem;
            font-weight: 600;
            font-size: 1rem;
            color: #1f2937;
            text-transform: uppercase;
        }

        td {
            padding: 1rem;
            font-size: 1rem;
        }

        tbody tr {
            border-top: 1px solid #e5e7eb;
        }

        tbody tr:nth-child(even) {
            background-color: #f9fafb;
        }

        .table-footer {
            background-color: #f9fafb;
            padding: 1rem;
            font-size: 1rem;
            color: #6b7280;
            border-top: 1px solid #e5e7eb;
        }

        strong {
            font-weight: 700;
        }

.vertical-ad {
    position: fixed;
    top: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998;
}

.right-ad {
    right: 0;
    width: 240px;
}

.left-ad {
    left: 0;
    width: 240px;
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column; 
        align-items: flex-start;
    }

    .nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .main-nav ul {
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin-top: 1rem;
    }

    .main-nav .nav-links.open {
        display: flex;
    }

    .main-nav a {
        padding: 0.5rem 0;
        text-align: left;
    }
    
    .menu-toggle {
        display: contents;
    }

    .hero-content h1 {
    	font-size: 2rem;
	line-height: normal;
   }

   .content-wrapper {
        flex-direction: column;
    }

.btn-si {
    display: flex
;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.1rem;
}
.btn-su {
    display: flex
;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.1rem;
}

.vertical-ad.left-ad {
        display: none;
    }

.vertical-ad.right-ad {
        display: none;
    }

}


