* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #111111;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Main Section */
.main-section {
    padding: 120px 0 50px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-title {
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.confidential {
    text-align: center;
    font-size: 1.2rem;
    color: #ff4444;
    margin-bottom: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #ff4444;
    padding: 10px 20px;
    display: inline-block;
    background-color: rgba(255, 68, 68, 0.1);
}

#jotform-container {
    margin-top: 4rem;
    text-align: left;
    padding-left: 10%;
}

#jotform-container iframe {
    width: 100% !important;
    max-width: 800px;
    border: none !important;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .confidential {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .logo {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    #jotform-container iframe {
        max-width: 100%;
    }
}

/* Animations */
@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px #00d4ff, 0 0 10px #00d4ff, 0 0 15px #00d4ff;
    }
    50% {
        text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 30px #00d4ff;
    }
}

.project-title {
    animation: glow 3s ease-in-out infinite;
}

.confidential {
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}