* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Roboto, sans-serif;
}
body {
    background-image: url('zerotec.png');
    background-size: auto 100%;
    background-position: right top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    color: #fff;
}
.container {
    max-width: 1600px;
    margin: 50px 0 0 50px;
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.25); 
    backdrop-filter: blur(6px); 
    -webkit-backdrop-filter: blur(6px); 
    border-radius: 16px; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}
h1 {
    font-size: 32px;
    text-align: left;
    margin-bottom: 20px;
}
.domain {
    font-size: 42px;
    font-weight: bold;
    text-align: left;
    background: linear-gradient(90deg, #4fd1ff, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 20px 0 35px 0;
}
.section {
    margin: 30px 0;
}
.section h2 {
    font-size: 19px;
    margin-bottom: 15px;
    color: #e0f2ff;
    text-align: left;
}
.section li {
    list-style: none;
    font-size: 16px;
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.8;
    text-align: left;
    white-space: nowrap;
}
.section li::before {
    content: "✓";
    color: #38bdf8;
    position: absolute;
    left: 0;
    font-weight: bold;
}
.contact-section {
    margin-top: 50px !important;
}
.gradient-text {
    background: linear-gradient(90deg, #4fd1ff, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}