﻿html {
    height: 100%;
    background: url("../Images/colorful-background.png") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}
body {
    margin: 0;
    padding: 0;
    padding-top: 80px;
    line-height: 1.6;
}

.header {
    position: fixed;
    top: 0;
    left: 0; 
    width: 100%; 
    z-index: 9999; 
    background: url("../Images/colorful-background.png") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); 
    z-index: -1;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.content {
    position: relative;
    z-index: 1; /* Lower z-index than header */
    padding: 30px 0;
    margin-top: 40px; 
}

.header-content {
    margin-top:15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}
.company-desc-img{
    height: 10px !important;
}
.logo img {
    height: 50px;
    margin-right: 10px;
    filter: drop-shadow(0px 0px 2px rgba(255, 255, 255, 255));
}

    .logo .company-desc {
        color: #666;
        font-size: 14px;
        font-style: italic;
    }

.navigation {
    display: flex;
}

    .navigation a {
        margin-left: 20px;
        text-decoration: none;
        color: #333;
        font-weight: 500;
    }


h1 {
    color: #333;
    margin-bottom: 20px;
}

.terms-content {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}