* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, #e8ecf1 0%, #ffffff 50%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

/* Logo Section */
.logo {
    margin-bottom: 30px;
}

.fiberplus-logo {
    width: 380px;
    height: auto;
}

/* Main Heading */
.main-heading {
    font-size: 48px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 30px;
}

/* Messages */
.message {
    font-size: 18px;
    color: #1e3a5f;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 500;
}

.message-english {
    font-size: 14px;
    color: #4a5f7a;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* Info Section */
.info-section {
    margin: 40px 0;
}

.info-text {
    font-size: 16px;
    color: #1e3a5f;
    margin-bottom: 5px;
    font-weight: 500;
}

.info-text-english {
    font-size: 14px;
    color: #4a5f7a;
    margin-bottom: 20px;
}

/* Button Link */
.btn-link {
    display: inline-block;
    background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
    color: white;
    text-decoration: none;
    padding: 15px 60px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
}

.btn-link:hover {
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
    transform: translateY(-2px);
}

/* Bottom Logos */
.bottom-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.logo-item {
    height: 90px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

/* Skyline Background */
.skyline {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: url('assets/skyline.svg') repeat-x bottom center;
    background-size: auto 100%;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

/* Alternative skyline if image not available */
.skyline::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, 
        rgba(30, 58, 95, 0.1) 0%, 
        transparent 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-heading {
        font-size: 36px;
    }

    .message {
        font-size: 16px;
    }

    .message-english {
        font-size: 13px;
    }

    .fiberplus-logo {
        width: 240px;
    }

    .bottom-logos {
        gap: 25px;
    }

    .logo-item {
        height: 70px;
    }

    .btn-link {
        padding: 12px 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 28px;
    }

    .message {
        font-size: 14px;
    }

    .message-english {
        font-size: 12px;
    }

    .fiberplus-logo {
        width: 200px;
    }

    .bottom-logos {
        gap: 15px;
    }

    .logo-item {
        height: 55px;
    }
}
