body {
    font-family: 'Outfit', sans-serif;
    background-color: #212121;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}
/* Header Styling */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #212121;
    height: 99px;
}

.logo {
    width: 125px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FFFFFF; /* White on hover */
}

.cta-button {
    position: relative;
    border: 2px solid #CCCCCC;
    padding: 10px 20px;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    border-color: #F9461D;
}

.cta-button::after {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-style: solid;
    border-width: 2px 2px 0px 0px;
    border-color: #F9461D; /* Orange accent */
}
.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.content {
    flex: 0 0 70%;
    margin-right: 20px;
}

.content-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.company-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.company-header img {
    width: 132px;
    height: 132px;
    margin-right: 20px;
}
.company-header h1 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 12px;
}
.company-header p {
    color: rgb(158, 158, 158);
    font-style: normal;
    font-weight: 400;
    margin: 0;
}
.section {
    border-color: #2e2e2e;
    border-width: 1px;
    border-style: solid;
    padding: 15px;
    margin-top: 20px;
}
.section h2 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 10px;
    border-bottom: 1px solid #444444;
    padding-bottom: 5px;
}
.overview p {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
    color: #B0B0B0;
}
.overview p span {
    color: #E0E0E0;
}
.table-container {
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
th, td {
    padding: 10px;
    text-align: left;
}
th {
    color: #B0B0B0;
    font-weight: normal;
    border-bottom: 1px solid #444444;
}
td {
    color: #E0E0E0;
}
.competitors-list {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}
.competitor {
    width: 100px;
    text-align: center;
}
.competitor img {
    width: 100px;
    height: 100px;
    background-color: #444444;
    margin-bottom: 5px;
}
.competitor-name {
    font-size: 0.9rem;
    color: #B0B0B0;
}
.cta {
    flex: 0 0 25%;
    padding: 20px;
    position: sticky;
    top: 20px;
    color: #FFFFFF; /* Ensure text is white */
    border: 1px solid transparent;
    border-color: #2e2e2e;
    height: 100%;
}

/* Add corner accents */
.cta::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: #F9461D; /* Orange accent */
    border-style: solid;
    border-width: 0px 2px 2px 0px;
}

.cta::before {
    top: 0;
    left: 0;
    transform: rotate(180deg);
}

/* Heading Styling */
.cta h2 {
    font-weight: 500;
    color: #FFFFFF;
    font-size: 1.5em;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Paragraph Styling */
.cta p {
    font-size: 1em;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #d1d1d1; /* Lighter grey for better readability */
}

/* Button Styling */
.cta a {
    text-decoration: none;
    color: #FFFFFF;
    background-color: transparent;
    padding: 10px 30px;
    border: 2px solid #F9461D; /* Orange border */
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.cta a:hover {
    background-color: #F9461D; /* Orange background on hover */
    color: #FFFFFF; /* Keep text white */
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #212121;
    color: #FFFFFF;
    padding: 20px;
    margin: 20px 0;
    border-width: 1px;
    border-style: solid;
    border-color: #F9461D;
    text-align: center;
}
.cta-section h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}
.cta-section p {
    font-size: 1rem;
    margin: 10px 0;
}
/* Button Styling */
.cta-section a {
    text-decoration: none;
    color: #FFFFFF;
    background-color: transparent;
    padding: 10px 30px;
    border: 2px solid #F9461D; /* Orange border */
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.cta-section a:hover {
    background-color: #F9461D; /* Orange background on hover */
    color: #FFFFFF; /* Keep text white */
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer a {
    text-decoration: none;
    color: #F9461D; /* Orange accent for links */
}

/* Company list */
.index-ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.index-ul li {
    background-color: #333333;
    border: 1px solid #F9461D;
    border-radius: 4px;
    padding: 10px;
    transition: transform 0.2s ease;
    text-align: center;
}

.index-ul li:hover {
    transform: translateY(-3px);
    background-color: #F9461D;
}

.index-ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    display: block;
}