/* Reset some basic styles */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
}

/* Body Styling */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #000000;
    color: #4a4a4a;
    line-height: 1.6;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container Styling */
.container {
    max-width: 900px;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Typography */
h1 {
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 20px;
    border-bottom: 3px solid #000000;
    padding-bottom: 10px;
}

h2 {
    font-size: 1.75rem;
    color: #d8be76;
    margin-top: 30px;
    margin-bottom: 10px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #d8be76;
    position: absolute;
    left: 0;
    bottom: -10px;
}

h3 {
    font-size: 1.3rem;
    color: #333333;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

ul {
    margin-top: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

ul li {
    margin-bottom: 10px;
}

/* Link Styling */
a {
    color: #d8be76;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

a:hover {
    border-bottom: 2px solid #d8be76;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }
}

.phone-numbers {
    display: inline-block; /* or 'flex' if you want to use flex properties */
    margin-left: 10px; /* Optional margin */
}

