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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e6e3 50%, #d4d1cc 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-card {
    background: #1e3a5f;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00e676, #00bcd4);
}

/* Header */
.header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: block;
}

.company-info {
    flex: 1;
}

.company-name {
    color: white;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.website {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* BNA Section */
.bna-section {
    background: #4a90e2;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.bna-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.bna-label {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.bna-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bna-icon {
    font-size: 24px;
}

.bna-text {
    color: white;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
}

.bna-right {
    text-align: right;
}

.bna-right p {
    color: white;
    font-size: 12px;
    margin: 2px 0;
    line-height: 1.4;
}

/* Services Section */
.services-section {
    margin-bottom: 20px;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    color: white;
    font-size: 14px;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    letter-spacing: 0.3px;
}

.services-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #888;
    font-size: 18px;
}

/* Pool Section */
.pool-section {
    border-top: 2px solid #4a90e2;
    padding-top: 20px;
    margin-bottom: 25px;
}

.pool-section h2 {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Coming Soon Section */
.coming-soon-section {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.coming-soon-section h3 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.coming-soon-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    letter-spacing: 0.3px;
}

/* Contact Section */
.contact-section {
    text-align: center;
}

.whatsapp-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25d366;
    color: white;
    padding: 18px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    letter-spacing: 0.5px;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:active {
    transform: translateY(0);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    fill: white;
}

.email {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 15px;
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 600px) {
    .content-card {
        padding: 30px 20px;
    }

    .company-name {
        font-size: 22px;
    }

    .bna-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .bna-right {
        text-align: left;
        width: 100%;
    }

    .whatsapp-btn {
        padding: 16px 25px;
        font-size: 16px;
    }

    .coming-soon-section h3 {
        font-size: 20px;
    }

    .coming-soon-section p {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .company-name {
        font-size: 20px;
    }
}
