* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: 
        linear-gradient(135deg, rgba(19, 98, 251, 0.2) 0%, rgba(10, 79, 217, 0.2) 100%),
        url('img/img1.webp') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.header-top {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
}

.commercial-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.commercial-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.logo-container {
    margin-bottom: 40px;
}

.logo {
    /* Logo-ul rămâne cu albastrul original - am scos filter-ul */
    width: 250px;
    height: auto;
    transform: scale(1.5);
    transform-origin: left center;
}

.content {
    color: white;
}

.tagline {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8F4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.by-cegid {
    font-size: 1.3rem;
    opacity: 0.8;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.main-headline {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: white;
}

.highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 25px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #FFD700;
    backdrop-filter: blur(10px);
}

.description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

.buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 35px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #FF5C35;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: #FF5C35;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.download-section {
    background: rgba(255, 255, 255, 0.8); /* Alb transparent */
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.download-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    color: #0046FE;
}

.download-title {
    font-size: 1.8rem;
    color: #0046FE;
    margin-bottom: 20px;
    font-weight: 700;
}

.download-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-download {
    background: linear-gradient(135deg, #0046FE 0%, #0046FE 100%);
    color: white;
    padding: 18px 45px;
    font-size: 1.2rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(19, 98, 251, 0.3);
    font-weight: 600;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(19, 98, 251, 0.4);
}

.file-info {
    margin-top: 25px;
    font-size: 0.95rem;
    color: #888;
    background: rgba(248, 249, 250, 0.7); /* Transparent */
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #0046FE;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    .main-headline {
        font-size: 1.8rem;
    }
    
    .buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .header-top {
        position: relative;
        top: 0;
        right: 0;
        text-align: center;
        margin-bottom: 20px;
    }
}