/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

a {
    color: #00adb5;
    text-decoration: none;
}

h1, h2, h3 {
	font-family: 'Roboto', sans-serif;
    color: #00796b;
}

button, .button {
    background-color: #00adb5;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, .button:hover {
    background-color: #007f7f;
}

/* Header */
header {
    background-color: #ffffff;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 100px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    font-size: 18px;
    color: #333;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(135deg, #e0f7fa 0%, #80deea 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    color: #00796b;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    color: #004d40;
    margin-bottom: 30px;
}

/* FOVEA Section */
.fovea-tech {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.fovea-tech h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #00796b;
}

.fovea-tech p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

/* Services Section */
.services {
    background-color: #e0f7fa;
    padding: 60px 0;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #00796b;
}

.services p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.service {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px
