body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

header {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    background-color: #3498db;
    padding: 10px;
    text-align: center;
}

nav a {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #2980b9;
}

section {
    padding: 40px;
    margin: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
}

h1, h2 {
    color: #2980b9;
}

ul {
    list-style: disc;
    margin-left: 20px;
}

.contact-form {
    max-width: 600px;
    margin: 20px auto;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px; /* Increased margin */
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form button {
    background-color: #3498db;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #2980b9;
}

.flag-icon {
    width: 20px; /* Adjust to your desired width */
    height: auto; /* Maintain aspect ratio */
    vertical-align: middle; /* Align the flag vertically with the text */
    margin-right: 5px; /* Add spacing between flag and text */
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0;
    margin-top: 30px;
}

.gogetssl-seal {
    display: flex;
    justify-content: center;
    text-align: center; /* Ensure seal is centered */
    margin-bottom: 10px; /* Add spacing between seal and copyright */
}

.error {
    color: red;
    font-size: 0.8em;
    margin-top: 5px;
}

.profile-picture {
    max-width: 300px; /* Adjust as needed */
    /* border-radius: 50%; Remove this line */
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

 .logo {
        max-width: 200px; /* Adjust the size as needed */
        display: block; /* Make it a block-level element */
        margin: 0 auto; /* Center the image horizontally */
        margin-bottom: 10px; /* Add some spacing between the logo and the heading */
    }

.contact-info {
     margin-top: 2rem;
}    

    .container {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

.social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1.5rem;
            margin-bottom: 10px;
        }
        
        .social-icons a {
            color: var(--primary-color);
            font-size: 1.5rem;
            transition: transform 0.3s ease, color 0.3s ease;
        }
        
        .social-icons a:hover {
            color: var(--primary-dark);
            transform: scale(1.2);
        }    

footer p a i {
    font-size: 20px; /* Adjust the size as needed */
    color: #333; /* Adjust the color as needed */
    transition: color 0.3s; /* Add a transition for hover effect */
}

footer p a:hover i {
    color: #3498db; /* Change color on hover */
}

.graphic-button {
    display: inline-block; /* Make it behave like a button */
    padding: 12px 25px; /* Adjust padding for size */
    font-size: 16px; /* Adjust font size as needed */
    font-weight: bold; /* Make the text bold */
    text-decoration: none; /* Remove the underline */
    color: #fff; /* Set the text color */
    background-color: #3498db; /* Set the background color */
    border: 2px solid #3498db; /* Add a border */
    border-radius: 8px; /* Round the corners */
    transition: background-color 0.3s, color 0.3s; /* Add a smooth transition */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

.graphic-button:hover {
    background-color: #fff; /* Change background color on hover */
    color: #3498db; /* Change text color on hover */
}