body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #3A3A3A;
    color: white;
    text-align: center;
}

header {
    padding: 20px;
    font-size: 24px;
    position: fixed;
    background: #1E1E1E;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

nav ul li a.active {
    font-weight: bold;
    color: #FF5733;
}

nav ul li a:hover {
    color: #FF5733;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.contact-content {
    background: #222;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    width: 80%;
    max-width: 600px;
}

h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

a {
    color: #FF5733;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.info-block p {
    font-size: 18px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.info-block i {
    color: #FF5733;
    font-size: 20px;
}