/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.contact-container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 36px;
    color: #2C3E50;
    margin-bottom: 10px;
}

.image-container img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
}

.contact-details h2 {
    font-size: 28px;
    color: #2C3E50;
    margin-bottom: 15px;
    text-align: center;
}

.contact-details ul {
    list-style-type: none;
    font-size: 18px;
    line-height: 1.6;
}

.contact-details a {
    color: #2980b9;
    text-decoration: none;
}

.warning-box {
    background-color: #bb0600;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-top: 30px;
    text-align: center;
}

.warning-box strong {
    font-size: 20px;
}
section.contact-details {
    margin: auto;
    display: table;
}