
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header */
header {
    background-color: rgba(0, 51, 102, 0.85); /* Dark Blue with transparency */
    color: white;
    padding: 50px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 4em;
    margin-bottom: 10px;
    font-weight: bold;
}

header p {
    font-size: 1.5em;
    font-style: italic;
    margin-top: 10px;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: center;
    background-color: rgba(217, 45, 42, 0.85); /* Red with transparency */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

nav a {
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    text-align: center;
    font-size: 1.3em;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #ffffff;
    color: #d92d2a; /* Red */
    border-radius: 5px;
}

/* Body Styling */
body {
    font-family: 'Times New Roman', Times, serif;
    color: #333;
    line-height: 1.6;
    background: url('flag.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
}

.container section {
    background-color: rgba(245, 245, 245, 0.85); /* light silver with transparency */
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Sections Styling */
h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #003366; /* Dark Blue */
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Services Section */
.services ul, .languages ul {
    list-style-type: none;
    padding: 0;
}

.services li, .languages li {
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* Call-to-Action Section */
.cta {
    background-color: rgba(217, 45, 42, 0.85); /* Red with transparency */
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.cta h2 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: bold;
}

.cta p {
    font-size: 1.6em;
    margin-bottom: 25px;
}

.cta a {
    text-decoration: none;
    color: #003366; /* Dark Blue */
    background-color: white;
    padding: 18px 35px;
    font-size: 1.4em;
    border-radius: 7px;
    transition: all 0.3s ease;
    border: 2px solid #003366;
}

.cta a:hover {
    background-color: #003366;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Footer Styling */
footer {
    background-color: rgba(0, 51, 102, 0.85); /* Dark Blue with transparency */
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 1.1em;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
#contact {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 50px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

#contact p {
    font-size: 1.3em;
    margin-bottom: 20px;
}

/* Link Styling */
a {
    color: #003366; /* Dark Blue */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #d92d2a; /* Red */
}

/* Responsive Styling */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em;
    }

    header p {
        font-size: 1.2em;
    }

    nav a {
        padding: 12px 20px;
        font-size: 1.1em;
    }

    .container {
        padding: 30px;
    }

    .cta h2 {
        font-size: 2.5em;
    }

    .cta p {
        font-size: 1.4em;
    }

    .cta a {
        font-size: 1.2em;
        padding: 15px 30px;
    }

    footer {
        font-size: 1em;
    }
}
