﻿/* General Reset */
body, h1, h2, h3, p, ul, ol, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
}

/* Container */
.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background: #003550;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    border-radius: 10px;
}

    header h1 {
        font-size: 2.5em;
    }

    header nav ul {
        list-style: none;
        margin: 10px 0 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

        header nav ul li {
            display: inline;
        }

            header nav ul li a {
                color: #fff;
                text-decoration: none;
                font-size: 1.1em;
            }

                header nav ul li a:hover {
                    text-decoration: underline;
                }

/* Main Content */
main {
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    background: #333;
    color: #fff;
    border-radius: 10px;
}

    footer p {
        margin: 0;
        font-size: 0.9em;
    }

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }
textarea {
    height: auto;
}
caption {
    font-weight: bold;
    font-size: 1.5em;
}
.centered-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; /* Adjust the width of the form */
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .centered-form h2 {
        margin-bottom: 20px;
        font-size: 1.5em;
    }

    .centered-form label {
        display: block;
        text-align: left;
        margin-bottom: 5px;
        font-weight: bold;
        font-size: 0.9em;
    }

    .centered-form .form-control {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1em;
    }

    .centered-form .btn-primary {
        width: 100%;
        padding: 10px;
        background: #007bff;
        color: #fff;
        font-size: 1em;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

        .centered-form .btn-primary:hover {
            background: #0056b3;
        }
.logo {
    height: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
}
.contactdata {
    max-width: 850px;
    margin: 0 auto;
    padding: 3px;
    /*border: 1px solid #ccc;
    border-radius: 10px;
    background: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
}

    /* Table styling */
    .contactdata table {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed;
    }

    .contactdata th,
    .contactdata td {
        text-align: left;
        padding: 3px;
        /*line-height: 1.2;*/
        vertical-align: top;
        /*border: 1px solid #ddd;*/
    }

    .contactdata th {
        background-color: #f4f4f4;
        font-weight: bold;
    }
/* Responsive table 
@media (max-width: 800px) {
    .contactdata {
        padding: 10px;
    }

        .contactdata table th,
        .contactdata table td {
            font-size: 0.9em;
        }
}*/