body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: auto;
    text-align: center;
}

header {
    background-color: #1e1e1e;
    display: flex;
    align-items: center; /* Aligns logo and menu vertically */
    justify-content: space-between; /* Ensures the menu is on the right */
    padding: 10px 20px;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    height: 60px; /* Adjust the logo size if needed */
    margin: -100px;
    margin-bottom: -35px;
}

nav ul.nav-right {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    position: relative; /* Add relative positioning */
    top: -8px; /* Adjust this value to move the menu up */
}

nav ul.nav-right li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
}

.panel-btn {
    background-color: #ff0d00; 
    color: white;
    padding: 10px 15px;
    border-radius: 5px; /* Rounded corners */
    font-weight: bold;
    display: flex;
    align-items: center; /* Align icon and text vertically */
    gap: 10px; /* Space between icon and text */
    text-decoration: none;
    transition: background-color 0.3s;
}

.panel-btn:hover {
    background-color: #bb0c03; /* Slightly darker green on hover */
}

.panel-btn i {
    font-size: 1.2rem; /* Adjust icon size */
    color: white;
}

#hero {
    padding: 150px 0;
    background: url(background.png);
    background-size: cover;
    background-position: center;
    position: relative;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

#hero .container {
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff0d00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #bb0c03;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #222222;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    gap: 10px;
}

.feature i {
    font-size: 1.5rem;
    color: #ff0d00;
}

.services-grid {
    display: flex;
    justify-content: center; /* Centers the plans horizontally */
    gap: 20px; /* Adds spacing between the plans */
    margin-top: 20px;
    flex-wrap: nowrap; /* Prevents wrapping to the next line */
}

.service {
    background-color: #222222;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    width: 300px; /* Sets a fixed width for consistent alignment */
    text-align: left; /* Aligns content inside the plan box to the left */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Adds a subtle shadow for emphasis */
    flex-shrink: 0; /* Prevents shrinking of the plan boxes */
}

.service h3 {
    text-align: center; /* Keeps the plan title centered */
}

.service p {
    text-align: center; /* Centers the price */
    font-size: 1.2rem; /* Adjust the size if needed */
    margin-bottom: 10px; /* Add spacing below the price */
}

.service .btn {
    margin: 15px auto; /* Automatically centers the button horizontally */
    display: block; /* Ensures the button takes up its own line */
    width: fit-content; /* Makes the button width adjust to its content */
    text-align: center; /* Aligns text inside the button */
}

footer {
    background-color: #1e1e1e;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

