.notphi {
    color: white;
    font-family: monospace;
    font-size: 25px;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tagline {
    color: white;
    font-family: monospace;
    font-size: 16px;
    text-align: center;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nav {
    color: white;
    font-family: monospace;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 60%;
}

.nav a {
    color: white;
    font-family: monospace;
    font-size: 12px;
    text-decoration: none;
    margin: 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav a:hover {
    color: lightgrey;
}

.content {
    color: white;
    font-family: monospace;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
    width: 90%;
    max-width: 800px;
    padding-bottom: 150px;
    padding-left: 10px;
    padding-right: 10px;
}

.content h2 {
    color: white;
    text-transform: uppercase;
    font-family: monospace;
    font-size: 16px;
    font-weight: 300;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content ul {
    list-style-type: square;
    margin-left: 20px;
}

.content ol {
    margin-left: 20px;
}

.content li {
    margin-bottom: 10px;
}

a {
    color: white;
    font-family: monospace;
    font-size: 10px;
}

/* unvisited link */
a:link {
    color: white;
}

/* visited link */
a:visited {
    color: darkgrey;
}

/* mouse over link */
a:hover {
    color: lightgrey;
}

/* selected link */
a:active {
    color: white;
}

.copy {
    color: white;
    font-family: monospace;
    font-size: 10px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    z-index: 10;
}

.footer-mask {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: #000000;
    z-index: 5;
}

.contact-section {
    margin: 40px 0;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.contact-primary {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
}

.contact-primary .email-button {
    font-size: 18px;
    padding: 15px 30px;
    border: 2px solid white;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.contact-primary .email-button:hover {
    background-color: white;
    color: black;
}

.contact-section h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
}

.contact-section strong {
    color: white;
}

.contact-cta {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
}

.contact-cta p {
    margin-bottom: 30px;
}

.service-section {
    margin: 40px 0;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.service-section:first-of-type {
    margin-top: 20px;
}

/* About page styles */
.about-section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-section h2 {
    color: white;
    text-transform: uppercase;
    font-family: monospace;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.about-section h3 {
    color: white;
    font-family: monospace;
    font-size: 14px;
    font-weight: 300;
    margin: 15px 0;
    letter-spacing: 1px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.about-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.principle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.principle-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.mission {
    text-align: center;
}

.mission .cta-button {
    margin-top: 30px;
}

/* Home page specific styles */
.logo {
    display: block;
    margin: 30px auto 0;
    width: 100px;
    height: 100px;
}

.clients {
    color: white;
    font-family: monospace;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 900px;
}

.clients h3 {
    color: white;
    text-transform: uppercase;
    font-family: monospace;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 45px;
    align-items: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.client-logos img {
    height: 45px;
    width: auto;
    max-width: 180px;

.client-text {
    color: white;
    font-family: monospace;
    font-size: 10px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.client-text:hover {
    opacity: 1;
}
}

.service-feature {
    display: flex;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid rgba(255, 255, 255, 0.2);
}

.service-feature-content {
    flex: 1;
}

.service-price {
    text-align: center;
    padding: 20px;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-amount {
    font-size: 24px;
    margin: 10px 0;
    color: white;
}

.highlight-box {
    border-left: 3px solid rgba(255, 255, 255, 0.4);
    padding-left: 20px;
    margin: 25px 0;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button {
    display: block;
    width: fit-content;
    margin: 40px auto;
    padding: 15px 30px;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: white;
    color: black;
}

/* Mobile-friendly adjustments */
@media screen and (max-width: 768px) {
    .content {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .content h2 {
        font-size: 18px;
    }
    
    .nav a {
        font-size: 14px;
        margin: 0 10px;
    }
    
    a {
        font-size: 12px;
    }
}
