/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

/* Body styling */
body {
    background: linear-gradient(to bottom, #f0f8ff, #e6f0fa);
    color: #333;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Header styling */
header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo-small {
    width: 40px;
    height: 40px;
}

.title-bar {
    text-align: center;
    font-size: 1.1rem;
    color: #333;
}

.title-link {
    text-decoration: none;
    color: inherit;
}

.title-link:hover {
    text-decoration: underline;
}

/* Hero section styling */
.hero-section {
    display: flex;
    padding: 50px 10%;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(240, 248, 255, 0.7);
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    border-radius: 5px;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    color: #3d85c6;
    margin-bottom: 20px;
}

h2, h3 {
    color: #333;
    margin-bottom: 20px;
    font-weight: normal;
}

h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #333;
}

/* Contact link */
.contact {
    margin: 25px 0;
}

.contact a {
    color: #3d85c6;
    text-decoration: none;
    font-size: 1rem;
}

.contact a:hover {
    text-decoration: underline;
}

/* Button styling */
.buttons {
    margin: 25px 0;
    display: flex;
    gap: 15px;
}

.button {
    padding: 10px 20px;
    border: 1px solid #3d85c6;
    border-radius: 4px;
    background-color: #fff;
    color: #3d85c6;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.9rem;
}

.button:hover {
    background-color: #3d85c6;
    color: #fff;
}

/* Language selector */
.lang-selector {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.lang-button {
    padding: 8px 16px;
    background-color: #3d85c6;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
}

.lang-button:hover {
    background-color: #2a5885;
}

/* Expertise section styling */
.expertise-section {
    padding: 50px 10%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
    background-size: cover;
    background-position: center;
}

/* Grid layout */
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.grid div {
    flex: 1;
    min-width: 300px;
    background: #e3f2fd;
    padding: 15px;
    border-radius: 5px;
}
