.company-profile {
    margin: 20px auto;
}

.profile-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    flex-wrap: wrap;
}

.company-logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.company-info {
    flex: 1;
    min-width: 0;
}

.website-link {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    word-break: break-word;
}

.website-link i {
    color: #0d6efd;
    font-size: 18px;
}

.website-link a {
    color: #333;
    text-decoration: underline;
    font-weight: 500;
}

.website-link a:hover {
    color: #0d6efd;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #0d6efd;
    color: #fff;
}

.social-links i {
    font-size: 18px;
}

/* Tablet */
@media (max-width: 768px) {
    .profile-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .website-link {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .company-logo img {
        width: 80px;
        height: 80px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .website-link a {
        font-size: 14px;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }

    .social-links i {
        font-size: 16px;
    }
}