body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}

header {
    background-color: #002233; /* Same color as the header */
    color: white;
    padding: 20px;
    text-align: left;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000; /* Ensure it is above other elements */
}

.logo {
    font-size: 24px;
}

.logo a {
    color: white;
    text-decoration: none;
}

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

.about-container {
    max-width: 800px;
    margin: 80px auto 20px auto; 
    padding: 20px;
    box-sizing: border-box;
}

.about-container h1 {
    font-size: 40px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 900; 
}

.about-container .introduction {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-container img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
}

.about-container p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.specs-box {
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}

.specs-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 900; 
}

.specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.spec-title {
    font-weight: bold;
}

.spec-value {
    margin-left: 10px;
}

.spec-value a {
    color: #002233;
    text-decoration: none;
}

.spec-value a:hover {
    text-decoration: underline;
}

.contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.contact-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 900; 
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.contact-item img {
    width: 100px;
    height: 100px;
    margin-right: 20px;
}

.contact-details {
    flex: 1;
}

.contact-details p {
    margin: 5px 0;
}