* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.container {
    z-index: 1;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

p {
    font-size: 1.2rem;
    color: #bdc3c7;
    margin-bottom: 40px;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.time-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-section span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #4fc3f7;
}

.newsletter input {
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    width: 250px;
    outline: none;
}

.newsletter button {
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    background: #4fc3f7;
    color: #1a1a2e;
    font-weight: bold;
    cursor: pointer;
    margin-left: -50px; /* Slight overlap for style */
    transition: 0.3s;
}

.newsletter button:hover {
    background: #fff;
}

@media (max-width: 600px) {
    #countdown { gap: 10px; }
    .time-section { min-width: 70px; padding: 10px; }
    h1 { font-size: 2rem; }
}
/* Add this to your existing style.css */
.company-logo {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
    color: #4fc3f7;
    opacity: 0.9;
}

/* Rest of your existing CSS stays the same... */
.logo {
    /* Adjust this value to make it smaller or larger */
    width: 520px; 
    
    /* This ensures the logo doesn't get distorted */
    height: auto;
    object-fit: contain;
    
    /* Adds a little breathing room around the logo */
    margin-bottom: 10px;
    
    /* Optional: subtle glow to match your theme */
    filter: drop-shadow(0px 0px 8px rgba(79, 195, 247, 0.3));
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}