/* Reset default margins and paddings */
body, h1, p {
    margin: 0;
    padding: 0;
}

/* Set default font family */
body {
    font-family: Arial, sans-serif;
}

/* Styling for header */
header {
    background-color: #333;
    color: white;
    padding: 10px;
}

/* Styling for navigation */
nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
}

/* Styling for main content */
main {
    padding: 20px;
}

/* Styling for hosting services */
.services {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.service {
    text-align: center;
    padding: 20px;
}

.service img {
    max-width: 100px;
    height: auto;
}

.service h2 {
    margin-top: 10px;
}

.service p {
    margin-top: 5px;
}

/* Styling for hosting table */
.hosting-table {
    width: 90%;
    margin: 40px auto;
    border-collapse: collapse;
}

.hosting-table th, .hosting-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.hosting-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.hosting-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Styling for pricing column */
.hosting-table td:nth-child(3) {
    font-weight: bold;
    color: #007BFF;
}

/* Styling for pricing lists */
.pricing-list {
    list-style: none;
    padding: 0;
}

.pricing-list li {
    margin: 5px 0;
}

/* Styling for contact section */
.contact-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section p {
    margin: 10px 0;
    font-size: 18px;
}

.contact-section strong {
    font-weight: bold;
}

.contact-section a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Styling for Discord iframe */
.contact-section iframe {
    margin-top: 20px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Responsive design for small screens */
@media screen and (max-width: 600px) {
    .contact-section {
        max-width: 100%;
    }
}

