/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 0px;
    background-color: #ffffff;
    color: #ffffff;
}

/* Header */
header {
    background: #ff6f00;
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Navigation Bar */
nav {
    background-color: #333;
    padding: 10px 0;
    position: fixed;
    top: 100px; /* Avoid overlap with header */
    width: 100%;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 4px 15px rgb(108, 108, 107);

}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 15px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background-color: #ff5722;
    border-radius: 5px;
}

.cpu-section h3{
    color :#591f00
}

/* CPU Section */
.cpu-section {
    background-color: #ffffff;
    padding: 50px 0;
    text-align: center;
    padding-top: 200px;
}

.cpu-section .container {
    width: 80%;
    margin: auto;
    background: #f97f0c;
    padding: 25px;
    box-shadow: 0 4px 15px rgb(233, 130, 12);
    border-radius: 15px;
}

.cpu-section h2 {
    color: #591f00;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
}

.cpu-section ul {
    text-align: left;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
    font-size: 18px;
}

.cpu-section p {
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
    font-size: 18px;
}

/* Benchmark Section */
.benchmark-section {
    background-color: #ffffff;
    padding: 50px 0;
    text-align: center;
}

.benchmark-section .container {
    width: 80%;
    margin: auto;
    background: #f97f0c;
    padding: 30px;
    box-shadow: 0 4px 15px rgb(233, 130, 12);
    border-radius: 15px;
}

.benchmark-section h3{
    color :#591f00
}


/* Benchmark Title */
.benchmark-section h2 {
    color: #591f00;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Benchmark Description */
.benchmark-section p {
    color: #ffffff;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
    font-size: 18px;
}

/* Benchmark Table */
.benchmark-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border: 3px solid #e65100; /* Thick border around the table */
    border-radius: 10px;
    overflow: hidden;
}

/* Table Header */
.benchmark-table th {
    background: #ff6f00;
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    border: 2px solid #e65100; /* Border for header cells */
    padding: 12px;
}

/* Table Rows */
.benchmark-table td {
    font-size: 16px;
    color: #333;
    padding: 12px;
    border: 2px solid #e65100; /* Border around each cell */
}

/* Alternating Row Colors */
.benchmark-table tr:nth-child(even) {
    background: #f8f8f8;
}

.benchmark-table tr:nth-child(odd) {
    background: #ffffff;
}

/* Hover Effect */
.benchmark-table tr:hover {
    background: #ff9e47;
    color: white;
    transition: 0.3s;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #ff6f00;
    color: white;
    margin-top: 20px;
    font-size: 14px;
    font-weight: bold;
    border-top: 3px solid #e65100;
}
